From eac694d674d12cb3993a2e977da4612f13fde6fc Mon Sep 17 00:00:00 2001 From: Stefan Fritsch Date: Mon, 11 Apr 2016 19:54:38 +0000 Subject: [PATCH] add comments Document which directives set which variables git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1738633 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/event/event.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c index 453d7d370c..76f3467650 100644 --- a/server/mpm/event/event.c +++ b/server/mpm/event/event.c @@ -167,15 +167,16 @@ #endif #define WORKER_FACTOR_SCALE 16 /* scale factor to allow fractional values */ static unsigned int worker_factor = DEFAULT_WORKER_FACTOR * WORKER_FACTOR_SCALE; + /* AsyncRequestWorkerFactor * 16 */ -static int threads_per_child = 0; /* Worker threads per child */ -static int ap_daemons_to_start = 0; -static int min_spare_threads = 0; -static int max_spare_threads = 0; +static int threads_per_child = 0; /* ThreadsPerChild */ +static int ap_daemons_to_start = 0; /* StartServers */ +static int min_spare_threads = 0; /* MinSpareThreads */ +static int max_spare_threads = 0; /* MaxSpareThreads */ static int ap_daemons_limit = 0; -static int max_workers = 0; -static int server_limit = 0; -static int thread_limit = 0; +static int max_workers = 0; /* MaxRequestWorkers */ +static int server_limit = 0; /* ServerLimit */ +static int thread_limit = 0; /* ThreadLimit */ static int had_healthy_child = 0; static int dying = 0; static int workers_may_exit = 0; -- 2.50.1