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

Function close_worker_sockets

server/mpm/worker/worker.c:262–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

260static apr_socket_t **worker_sockets;
261
262static void close_worker_sockets(void)
263{
264 int i;
265 for (i = 0; i < threads_per_child; i++) {
266 if (worker_sockets[i]) {
267 apr_socket_close(worker_sockets[i]);
268 worker_sockets[i] = NULL;
269 }
270 }
271}
272
273static void wakeup_listener(void)
274{

Callers 1

signal_threadsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected