Searched defs:ap_daemons_max_free (Results 1 - 2 of 2) sorted by relevance

/httpd/server/mpm/motorz/
H A Dmotorz.c26 static int ap_daemons_max_free=0; variable
655 *result = ap_daemons_max_free;
1227 if (ap_daemons_max_free < ap_daemons_min_free + num_buckets)
1228 ap_daemons_max_free = ap_daemons_min_free + num_buckets;
1621 ap_daemons_max_free = DEFAULT_MAX_FREE_DAEMON;
1747 /* ap_daemons_max_free < ap_daemons_min_free + 1 checked in motorz_run() */
/httpd/server/mpm/prefork/
H A Dprefork.c94 static int ap_daemons_max_free=0; variable
324 *result = ap_daemons_max_free;
911 if (idle_count > ap_daemons_max_free) {
1006 if (ap_daemons_max_free < ap_daemons_min_free + num_buckets)
1007 ap_daemons_max_free = ap_daemons_min_free + num_buckets;
1404 ap_daemons_max_free = DEFAULT_MAX_FREE_DAEMON;
1529 /* ap_daemons_max_free < ap_daemons_min_free + 1 checked in prefork_run() */
1583 ap_daemons_max_free = atoi(arg);

Completed in 18 milliseconds