Searched refs:max_workers (Results 1 - 5 of 5) sorted by relevance
| /httpd/server/mpm/worker/ |
| H A D | worker.c | 125 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/server/mpm/event/ |
| H A D | event.c | 176 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...] |
| /httpd/modules/proxy/ |
| H A D | mod_proxy_balancer.c | 823 balancer->max_workers = balancer->workers->nelts + balancer->growth; 865 (int)balancer->max_workers, i); 869 balancer->max_workers, type, pconf); 1491 * never be more than max_workers, which is restricted to int */ 1492 ap_rprintf(r, "<td>%d [%d Used]</td>\n", balancer->max_workers, 1493 balancer->max_workers - (int)storage->num_free_slots(balancer->wslot));
|
| H A D | mod_proxy.h | 461 int max_workers; /* maximum number of allowed workers */ member in struct:proxy_balancer
|
| H A D | proxy_util.c | 3173 * since our upper limit is always max_workers 3176 for (index = 0; index < b->max_workers; index++) {
|
Completed in 77 milliseconds