From: Jim Jagielski Date: Wed, 28 Aug 2002 18:48:07 +0000 (+0000) Subject: Adjust the descriptions of these directives, avoid the child/process/thread X-Git-Tag: AGB_BEFORE_AAA_CHANGES~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f63b988b921d74427b0ddcca16e891a7bb6482f0;p=apache Adjust the descriptions of these directives, avoid the child/process/thread confusion. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96558 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/worker/worker.c b/server/mpm/worker/worker.c index 84272b4fcf..fee5638f8d 100644 --- a/server/mpm/worker/worker.c +++ b/server/mpm/worker/worker.c @@ -2159,17 +2159,17 @@ LISTEN_COMMANDS, AP_INIT_TAKE1("StartServers", set_daemons_to_start, NULL, RSRC_CONF, "Number of child processes launched at server startup"), AP_INIT_TAKE1("MinSpareThreads", set_min_spare_threads, NULL, RSRC_CONF, - "Minimum number of idle children, to handle request spikes"), + "Minimum number of idle threads, to handle request spikes"), AP_INIT_TAKE1("MaxSpareThreads", set_max_spare_threads, NULL, RSRC_CONF, - "Maximum number of idle children"), + "Maximum number of idle threads"), AP_INIT_TAKE1("MaxClients", set_max_clients, NULL, RSRC_CONF, - "Maximum number of children alive at the same time"), + "Maximum number of threads alive at the same time"), AP_INIT_TAKE1("ThreadsPerChild", set_threads_per_child, NULL, RSRC_CONF, "Number of threads each child creates"), AP_INIT_TAKE1("ServerLimit", set_server_limit, NULL, RSRC_CONF, - "Maximum value of MaxClients for this run of Apache"), + "Maximum number of child processes for this run of Apache"), AP_INIT_TAKE1("ThreadLimit", set_thread_limit, NULL, RSRC_CONF, - "Maximum worker threads in a server for this run of Apache"), + "Maximum number of worker threads per child process for this run of Apache - Upper limit for ThreadsPerChild"), { NULL } };