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

Function wake_all_idles

modules/http2/h2_workers.c:361–370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

359}
360
361static void wake_all_idles(h2_workers *workers)
362{
363 h2_slot *slot;
364 for (slot = APR_RING_FIRST(&workers->idle);
365 slot != APR_RING_SENTINEL(&workers->idle, h2_slot, link);
366 slot = APR_RING_NEXT(slot, link))
367 {
368 apr_thread_cond_signal(slot->more_work);
369 }
370}
371
372static apr_status_t workers_pool_cleanup(void *data)
373{

Callers 2

workers_pool_cleanupFunction · 0.85
h2_workers_shutdownFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected