Searched defs:isc__mempool (Results 1 – 1 of 1) sorted by relevance
191 struct isc__mempool { struct195 ISC_LINK(isc__mempool_t) link; /*%< next pool in this mem context */ argument196 element *items; /*%< low water item list */197 size_t size; /*%< size of each item on this pool */198 unsigned int maxalloc; /*%< max number of items allowed */199 unsigned int allocated; /*%< # of items currently given out */200 unsigned int freecount; /*%< # of items on reserved list */201 unsigned int freemax; /*%< # of items allowed on free list */202 unsigned int fillcount; /*%< # of items to fetch on each fill */204 unsigned int gets; /*%< # of requests to this pool */[all …]