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

/httpd/server/mpm/worker/
H A Dfdqueue.c42 struct recycled_pool *first_pool = qi->recycled_pools; local
43 if (first_pool == NULL) {
46 if (apr_atomic_casptr((void*)&(qi->recycled_pools), first_pool->next,
47 first_pool) == first_pool) {
48 apr_pool_destroy(first_pool->pool);
198 struct recycled_pool *first_pool = queue_info->recycled_pools; local
199 if (first_pool == NULL) {
202 if (apr_atomic_casptr((void*)&(queue_info->recycled_pools), first_pool->next,
203 first_pool)
[all...]
/httpd/server/mpm/event/
H A Dfdqueue.c52 struct recycled_pool *first_pool = qi->recycled_pools; local
53 if (first_pool == NULL) {
57 ((void*) &(qi->recycled_pools), first_pool->next,
58 first_pool) == first_pool) {
59 apr_pool_destroy(first_pool->pool);
265 struct recycled_pool *first_pool = queue_info->recycled_pools; local
266 if (first_pool == NULL) {
271 first_pool->next, first_pool)
[all...]

Completed in 17 milliseconds