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

Function ap_queue_info_num_idlers

server/mpm_fdqueue.c:210–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208}
209
210apr_uint32_t ap_queue_info_num_idlers(fd_queue_info_t *queue_info)
211{
212 apr_uint32_t val;
213 val = apr_atomic_read32(&queue_info->idlers);
214 return (val > zero_pt) ? val - zero_pt : 0;
215}
216
217void ap_queue_info_push_pool(fd_queue_info_t *queue_info,
218 apr_pool_t *pool_to_recycle)

Callers 4

mpm_fdqueue.hFile · 0.85
enable_listensocksFunction · 0.85
connections_above_limitFunction · 0.85
listener_threadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected