Lines Matching +full:single +full:- +full:tt
11 <br> $Id: rpool.html,v 1.4 2000-12-07 17:33:09 dmoen Exp $
25 run of <tt>`sendmail -q`</tt> that delivered 3 messages:
96 <tt> SM_RPOOL_T *sm_rpool_new_x(SM_RPOOL_T *parent) </tt>
109 <tt> void *sm_rpool_malloc_x(SM_RPOOL_T *rpool, size_t size) </tt>
120 <tt> void sm_rpool_setsizes(SM_RPOOL_T *rpool, size_t poolsize, size_t bigobjectsize) </tt>
127 <tt>poolsize</tt> is the number of bytes of pool memory
132 as the poolsize, and only a single pool will be allocated
134 <tt>poolsize</tt> is an optimization, not a hard limit:
139 <tt>bigobjectsize</tt> is a value <= <tt>poolsize</tt>.
140 It is used when an <tt>sm_rpool_malloc_x</tt> request exceeds
142 If the request is > <tt>bigobjectsize</tt> then the request
145 If the request is <= <tt>bigobjectsize</tt> then the current
148 Consequently, no more than <tt>bigobjectsize-1</tt> bytes will
155 <tt> SM_RPOOL_ATTACH_T sm_rpool_attach_x(SM_RPOOL_T *rpool, SM_RPOOL_RFREE_T rfree, void *rcontext)…
167 <tt> void sm_rpool_detach(SM_RPOOL_ATTACH_T a) </tt>
169 The argument is a magic cookie returned by <tt>sm_rpool_attach_t</tt>,
171 call to <tt>sm_rpool_attach_t</tt>.
177 <tt> void sm_rpool_free(SM_RPOOL_T *rpool) </tt>