MCPcopy Create free account
hub / github.com/apache/httpd / ap_queue_info_free_idle_pools

Function ap_queue_info_free_idle_pools

server/mpm_fdqueue.c:284–296  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

282}
283
284void ap_queue_info_free_idle_pools(fd_queue_info_t *queue_info)
285{
286 apr_pool_t *p;
287
288 queue_info->max_recycled_pools = 0;
289 for (;;) {
290 ap_queue_info_pop_pool(queue_info, &p);
291 if (p == NULL)
292 break;
293 apr_pool_destroy(p);
294 }
295 apr_atomic_set32(&queue_info->recycled_pools_count, 0);
296}
297
298
299apr_status_t ap_queue_info_term(fd_queue_info_t *queue_info)

Callers 3

mpm_fdqueue.hFile · 0.85
listener_threadFunction · 0.85
close_listenersFunction · 0.85

Calls 1

ap_queue_info_pop_poolFunction · 0.85

Tested by

no test coverage detected