Searched defs:remaining_children_to_start (Results 1 - 4 of 4) sorted by relevance

/httpd/server/mpm/motorz/
H A Dmotorz.c1190 int remaining_children_to_start; local
1238 remaining_children_to_start = ap_num_kids;
1239 if (remaining_children_to_start > ap_daemons_limit) {
1240 remaining_children_to_start = ap_daemons_limit;
1243 startup_children(mz, remaining_children_to_start);
1244 remaining_children_to_start = 0;
1304 if (remaining_children_to_start
1311 --remaining_children_to_start;
1335 else if (remaining_children_to_start) {
1340 startup_children(mz, remaining_children_to_start);
[all...]
/httpd/server/mpm/prefork/
H A Dprefork.c970 int remaining_children_to_start; local
1017 remaining_children_to_start = ap_daemons_to_start;
1018 if (remaining_children_to_start > ap_daemons_limit) {
1019 remaining_children_to_start = ap_daemons_limit;
1022 startup_children(remaining_children_to_start);
1023 remaining_children_to_start = 0;
1095 else if (remaining_children_to_start
1102 --remaining_children_to_start;
1126 else if (remaining_children_to_start) {
1131 startup_children(remaining_children_to_start);
[all...]
/httpd/server/mpm/worker/
H A Dworker.c1688 static void server_main_loop(int remaining_children_to_start, int num_buckets) argument
1745 else if (remaining_children_to_start
1751 --remaining_children_to_start;
1787 else if (remaining_children_to_start) {
1792 startup_children(remaining_children_to_start);
1793 remaining_children_to_start = 0;
1810 int remaining_children_to_start; local
1850 remaining_children_to_start = ap_daemons_to_start;
1851 if (remaining_children_to_start > ap_daemons_limit) {
1852 remaining_children_to_start
[all...]
/httpd/server/mpm/event/
H A Devent.c2949 static void server_main_loop(int remaining_children_to_start, int num_buckets) argument
3007 else if (remaining_children_to_start
3013 --remaining_children_to_start;
3050 else if (remaining_children_to_start) {
3055 startup_children(remaining_children_to_start);
3056 remaining_children_to_start = 0;
3073 int remaining_children_to_start; local
3113 remaining_children_to_start = ap_daemons_to_start;
3114 if (remaining_children_to_start > ap_daemons_limit) {
3115 remaining_children_to_start
[all...]

Completed in 32 milliseconds