Searched defs:max_workers (Results 1 - 3 of 3) sorted by relevance

/httpd/server/mpm/worker/
H A Dworker.c125 static int max_workers = 0; variable
2162 max_workers = ap_daemons_limit * threads_per_child;
2299 if (max_workers < threads_per_child) {
2303 "ThreadsPerChild of", max_workers);
2314 max_workers, threads_per_child);
2316 max_workers = threads_per_child;
2319 ap_daemons_limit = max_workers / threads_per_child;
2321 if (max_workers % threads_per_child) {
2327 "multiple of", max_workers);
2339 "multiple %d", max_workers, threads_per_chil
[all...]
/httpd/modules/proxy/
H A Dmod_proxy.h461 int max_workers; /* maximum number of allowed workers */ member in struct:proxy_balancer
/httpd/server/mpm/event/
H A Devent.c176 static int max_workers = 0; variable
3432 max_workers = ap_daemons_limit * threads_per_child;
3632 if (max_workers < threads_per_child) {
3636 "ThreadsPerChild of", max_workers);
3647 max_workers, threads_per_child);
3649 max_workers = threads_per_child;
3652 ap_daemons_limit = max_workers / threads_per_child;
3654 if (max_workers % threads_per_child) {
3660 "multiple of", max_workers);
3672 "multiple %d", max_workers, threads_per_chil
[all...]

Completed in 1957 milliseconds