]> granicus.if.org Git - apache/commitdiff
Adjust the descriptions of these directives, avoid the child/process/thread
authorJim Jagielski <jim@apache.org>
Wed, 28 Aug 2002 18:48:07 +0000 (18:48 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 28 Aug 2002 18:48:07 +0000 (18:48 +0000)
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

server/mpm/worker/worker.c

index 84272b4fcf1cae63e595fe3901501c2d70a392a5..fee5638f8dc4ba1e8a06b0e0fd9caf8ef8b0f156 100644 (file)
@@ -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 }
 };