Searched defs:new_recycle (Results 1 - 2 of 2) sorted by relevance

/httpd/server/mpm/worker/
H A Dfdqueue.c91 struct recycled_pool *new_recycle; local
92 new_recycle = (struct recycled_pool *)apr_palloc(pool_to_recycle,
93 sizeof(*new_recycle));
94 new_recycle->pool = pool_to_recycle;
97 * new_recycle->next can be changed after apr_atomic_casptr
101 new_recycle->next = next;
103 new_recycle, next) == next) {
/httpd/server/mpm/event/
H A Dfdqueue.c215 struct recycled_pool *new_recycle; local
232 new_recycle = (struct recycled_pool *) apr_palloc(pool_to_recycle,
233 sizeof (*new_recycle));
234 new_recycle->pool = pool_to_recycle;
238 * new_recycle->next can be changed after apr_atomic_casptr
242 new_recycle->next = next;
244 new_recycle, next) == next)

Completed in 11 milliseconds