]> granicus.if.org Git - apache/commitdiff
add comments
authorStefan Fritsch <sf@apache.org>
Mon, 11 Apr 2016 19:54:38 +0000 (19:54 +0000)
committerStefan Fritsch <sf@apache.org>
Mon, 11 Apr 2016 19:54:38 +0000 (19:54 +0000)
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

index 453d7d370cb1939d6b1f0294fe25f732dc1e6cb5..76f346765037c0ee5245d8a042bbe8f4a518fcbb 100644 (file)
 #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;