Changes with Apache 2.0.31-dev
+ *) Rename BeOS MPM directive RequestsPerThread to MaxRequestsPerThread.
+ [Lars Eilebrecht]
+
*) Split out blocking from the mode in the input filters.
[Justin Erenkrantz]
# BeOS MPM
# StartThreads: how many threads do we initially spawn?
# MaxClients: max number of threads we can have (1 thread == 1 client)
-# RequestsPerThread: maximum number of requests each thread will process before
-# exiting
+# MaxRequestsPerThread: maximum number of requests each thread will process
<IfModule beos.c>
StartThreads 10
MaxClients 50
-RequestsPerThread 10000
+MaxRequestsPerThread 10000
</IfModule>
# NetWare MPM
return NULL;
}
-static const char *set_requests_per_thread (cmd_parms *cmd, void *dummy, const char *arg)
+static const char *set_max_requests_per_thread (cmd_parms *cmd, void *dummy, const char *arg)
{
const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
if (err != NULL) {
"Maximum number of idle children" ),
AP_INIT_TAKE1( "MaxClients", set_threads_limit, NULL, RSRC_CONF,
"Maximum number of children alive at the same time (max threads)" ),
-AP_INIT_TAKE1( "RequestsPerThread", set_requests_per_thread, NULL, RSRC_CONF,
+AP_INIT_TAKE1( "MaxRequestsPerThread", set_max_requests_per_thread, NULL, RSRC_CONF,
"Maximum number of requests served by a thread" ),
{ NULL }
};