]> granicus.if.org Git - apache/commitdiff
get rid of some cruft related to a now-unused parameter to
authorJeff Trawick <trawick@apache.org>
Wed, 7 Feb 2001 13:17:32 +0000 (13:17 +0000)
committerJeff Trawick <trawick@apache.org>
Wed, 7 Feb 2001 13:17:32 +0000 (13:17 +0000)
make_child() and unnecessary calls to time()

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88009 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/beos/beos.c
server/mpm/dexter/dexter.c
server/mpm/experimental/perchild/perchild.c
server/mpm/mpmt_beos/mpmt_beos.c
server/mpm/mpmt_pthread/mpmt_pthread.c
server/mpm/perchild/perchild.c
server/mpm/spmt_os2/spmt_os2.c

index 722a0af3b3abb028985a77e9b611e70bc0176741..1620b18ce267d5e0a88ab78f709a88b9f84dd381 100644 (file)
@@ -436,7 +436,7 @@ static int32 worker_thread(void * dummy)
     return (0);
 }
 
-static int make_worker(server_rec *s, int slot, time_t now)
+static int make_worker(server_rec *s, int slot)
 {
     thread_id tid;
     proc_info *my_info = (proc_info *)malloc(sizeof(proc_info));
@@ -488,7 +488,7 @@ static void startup_threads(int number_to_start)
        if (ap_child_table[i].pid) {
            continue;
        }
-       if (make_worker(ap_server_conf, i, 0) < 0) {
+       if (make_worker(ap_server_conf, i) < 0) {
            break;
        }
        --number_to_start;
@@ -511,7 +511,6 @@ static int hold_off_on_exponential_spawning;
 static void perform_idle_server_maintenance(void)
 {
     int i;
-    time_t now = 0;
     int free_length;
     int free_slots[MAX_SPAWN_RATE];
     int last_non_dead;
@@ -538,7 +537,7 @@ static void perform_idle_server_maintenance(void)
 
     if (free_length > 0) {
        for (i = 0; i < free_length; ++i) {
-               make_worker(ap_server_conf, free_slots[i], now);
+               make_worker(ap_server_conf, free_slots[i]);
            }
            /* the next time around we want to spawn twice as many if this
             * wasn't good enough, but not if we've just done a graceful
@@ -586,7 +585,7 @@ static void server_main_loop(int remaining_threads_to_start)
                    /* we're still doing a 1-for-1 replacement of dead
                      * children with new children
                      */
-                   make_worker(ap_server_conf, child_slot, time(NULL));
+                   make_worker(ap_server_conf, child_slot);
                    --remaining_threads_to_start;
                }
 #if APR_HAS_OTHER_CHILD
index 8cd3d2c717094fbde6b1d197eb523eb2d078ba93..367cf547e30818a6908b02522bb3ce3f50362c20 100644 (file)
@@ -767,7 +767,7 @@ static void child_main(int child_num_arg)
     }
 }
 
-static int make_child(server_rec *s, int slot, time_t now)
+static int make_child(server_rec *s, int slot)
 {
     int pid;
 
@@ -834,7 +834,7 @@ static int startup_children(int number_to_start)
        if (ap_child_table[i].pid) {
            continue;
        }
-       if (make_child(ap_server_conf, i, 0) < 0) {
+       if (make_child(ap_server_conf, i) < 0) {
            break;
        }
        --number_to_start;
@@ -858,7 +858,6 @@ static int hold_off_on_exponential_spawning;
 static void perform_child_maintenance(void)
 {
     int i;
-    time_t now = 0;
     int free_length;
     int free_slots[MAX_SPAWN_RATE];
     int last_non_dead = -1;
@@ -885,7 +884,7 @@ static void perform_child_maintenance(void)
 
     if (free_length > 0) {
        for (i = 0; i < free_length; ++i) {
-           make_child(ap_server_conf, free_slots[i], now);
+           make_child(ap_server_conf, free_slots[i]);
        }
        /* the next time around we want to spawn twice as many if this
         * wasn't good enough, but not if we've just done a graceful
@@ -932,7 +931,7 @@ static void server_main_loop(int remaining_children_to_start)
                    /* we're still doing a 1-for-1 replacement of dead
                      * children with new children
                      */
-                   make_child(ap_server_conf, child_slot, time(NULL));
+                   make_child(ap_server_conf, child_slot);
                    --remaining_children_to_start;
                }
 #if APR_HAS_OTHER_CHILD
index b2cb6d393a0bc6439194464ae1668ae0baddf736..d3a67c215a9a1d44072a9571c9e42c89f6cc534b 100644 (file)
@@ -926,7 +926,7 @@ static void child_main(int child_num_arg)
     }
 }
 
-static int make_child(server_rec *s, int slot, time_t now)
+static int make_child(server_rec *s, int slot)
 {
     int pid;
 
@@ -990,7 +990,7 @@ static int startup_children(int number_to_start)
        if (ap_child_table[i].pid) {
            continue;
        }
-       if (make_child(ap_server_conf, i, 0) < 0) {
+       if (make_child(ap_server_conf, i) < 0) {
            break;
        }
        --number_to_start;
@@ -1014,7 +1014,6 @@ static int hold_off_on_exponential_spawning;
 static void perform_child_maintenance(void)
 {
     int i;
-    time_t now = 0;
     int free_length;
     int free_slots[MAX_SPAWN_RATE];
     int last_non_dead = -1;
@@ -1041,7 +1040,7 @@ static void perform_child_maintenance(void)
 
     if (free_length > 0) {
        for (i = 0; i < free_length; ++i) {
-           make_child(ap_server_conf, free_slots[i], now);
+           make_child(ap_server_conf, free_slots[i]);
        }
        /* the next time around we want to spawn twice as many if this
         * wasn't good enough, but not if we've just done a graceful
@@ -1092,7 +1091,7 @@ static void server_main_loop(int remaining_children_to_start)
                    /* we're still doing a 1-for-1 replacement of dead
                      * children with new children
                      */
-                   make_child(ap_server_conf, child_slot, time(NULL));
+                   make_child(ap_server_conf, child_slot);
                    --remaining_children_to_start;
                }
 #if APR_HAS_OTHER_CHILD
index db5220e00b09abaadb91cc89bbc2214d396198f0..02c02bac0ecfedcc3bcb50662ec8d419237cfbf9 100644 (file)
@@ -491,7 +491,7 @@ static int32 child_main(void * data)
     return (0);
 }
 
-static int make_child(server_rec *s, int slot, time_t now)
+static int make_child(server_rec *s, int slot)
 {
     thread_id tid;
     
@@ -533,7 +533,7 @@ static void startup_children(int number_to_start)
        if (ap_child_table[i].pid) {
            continue;
        }
-       if (make_child(ap_server_conf, i, 0) < 0) {
+       if (make_child(ap_server_conf, i) < 0) {
            break;
        }
        --number_to_start;
@@ -556,7 +556,6 @@ static int hold_off_on_exponential_spawning;
 static void perform_idle_server_maintenance(void)
 {
     int i;
-    time_t now = 0;
     int free_length;
     int free_slots[MAX_SPAWN_RATE];
     int last_non_dead;
@@ -583,7 +582,7 @@ static void perform_idle_server_maintenance(void)
 
     if (free_length > 0) {
        for (i = 0; i < free_length; ++i) {
-               make_child(ap_server_conf, free_slots[i], now);
+               make_child(ap_server_conf, free_slots[i]);
            }
            /* the next time around we want to spawn twice as many if this
             * wasn't good enough, but not if we've just done a graceful
@@ -631,7 +630,7 @@ static void server_main_loop(int remaining_children_to_start)
                    /* we're still doing a 1-for-1 replacement of dead
                      * children with new children
                      */
-                   make_child(ap_server_conf, child_slot, time(NULL));
+                   make_child(ap_server_conf, child_slot);
                    --remaining_children_to_start;
                }
 #if APR_HAS_OTHER_CHILD
index fabdf37274dbf96c07ed94379b4f90f793b468a7..e12a76113cc041efe598dc510fa5d675cf7ae8a9 100644 (file)
@@ -713,7 +713,7 @@ static void child_main(int child_num_arg)
     }
 }
 
-static int make_child(server_rec *s, int slot, time_t now
+static int make_child(server_rec *s, int slot) 
 {
     int pid;
 
@@ -781,7 +781,7 @@ static void startup_children(int number_to_start)
        if (ap_scoreboard_image->parent[i].pid != 0) {
            continue;
        }
-       if (make_child(ap_server_conf, i, 0) < 0) {
+       if (make_child(ap_server_conf, i) < 0) {
            break;
        }
        --number_to_start;
@@ -806,7 +806,6 @@ static void perform_idle_server_maintenance(void)
     int i, j;
     int idle_thread_count;
     short_score *ss;
-    time_t now = 0;
     int free_length;
     int free_slots[MAX_SPAWN_RATE];
     int last_non_dead;
@@ -898,7 +897,7 @@ static void perform_idle_server_maintenance(void)
                             idle_thread_count, total_non_dead);
            }
            for (i = 0; i < free_length; ++i) {
-               make_child(ap_server_conf, free_slots[i], now);
+               make_child(ap_server_conf, free_slots[i]);
            }
            /* the next time around we want to spawn twice as many if this
             * wasn't good enough, but not if we've just done a graceful
@@ -939,7 +938,7 @@ static void server_main_loop(int remaining_children_to_start)
                    /* we're still doing a 1-for-1 replacement of dead
                      * children with new children
                      */
-                   make_child(ap_server_conf, child_slot, time(NULL));
+                   make_child(ap_server_conf, child_slot);
                    --remaining_children_to_start;
                }
 #if APR_HAS_OTHER_CHILD
index b2cb6d393a0bc6439194464ae1668ae0baddf736..d3a67c215a9a1d44072a9571c9e42c89f6cc534b 100644 (file)
@@ -926,7 +926,7 @@ static void child_main(int child_num_arg)
     }
 }
 
-static int make_child(server_rec *s, int slot, time_t now)
+static int make_child(server_rec *s, int slot)
 {
     int pid;
 
@@ -990,7 +990,7 @@ static int startup_children(int number_to_start)
        if (ap_child_table[i].pid) {
            continue;
        }
-       if (make_child(ap_server_conf, i, 0) < 0) {
+       if (make_child(ap_server_conf, i) < 0) {
            break;
        }
        --number_to_start;
@@ -1014,7 +1014,6 @@ static int hold_off_on_exponential_spawning;
 static void perform_child_maintenance(void)
 {
     int i;
-    time_t now = 0;
     int free_length;
     int free_slots[MAX_SPAWN_RATE];
     int last_non_dead = -1;
@@ -1041,7 +1040,7 @@ static void perform_child_maintenance(void)
 
     if (free_length > 0) {
        for (i = 0; i < free_length; ++i) {
-           make_child(ap_server_conf, free_slots[i], now);
+           make_child(ap_server_conf, free_slots[i]);
        }
        /* the next time around we want to spawn twice as many if this
         * wasn't good enough, but not if we've just done a graceful
@@ -1092,7 +1091,7 @@ static void server_main_loop(int remaining_children_to_start)
                    /* we're still doing a 1-for-1 replacement of dead
                      * children with new children
                      */
-                   make_child(ap_server_conf, child_slot, time(NULL));
+                   make_child(ap_server_conf, child_slot);
                    --remaining_children_to_start;
                }
 #if APR_HAS_OTHER_CHILD
index 469e8e169b8e348d0aec8f7818d5887cd1ca5c04..184f92f2953450d3fbc7aa3f9aa5053870afa0f9 100644 (file)
@@ -833,7 +833,7 @@ static void thread_main(void *thread_num_arg)
 }
 
 
-static int make_child(server_rec *s, int slot, time_t now)
+static int make_child(server_rec *s, int slot)
 {
     TID tid;
 
@@ -880,13 +880,12 @@ static int make_child(server_rec *s, int slot, time_t now)
 static void startup_children(int number_to_start)
 {
     int i;
-    time_t now = time(0);
 
     for (i = 0; number_to_start && i < ap_daemons_limit; ++i) {
        if (ap_scoreboard_image->servers[0][i].status != SERVER_DEAD) {
            continue;
        }
-       if (make_child(ap_server_conf, i, now) < 0) {
+       if (make_child(ap_server_conf, i) < 0) {
            break;
        }
        --number_to_start;
@@ -912,7 +911,6 @@ static void perform_idle_server_maintenance(void)
     int to_kill;
     int idle_count;
     short_score *ss;
-    time_t now = time(0);
     int free_length;
     int free_slots[MAX_SPAWN_RATE];
     int last_non_dead;
@@ -995,7 +993,7 @@ static void perform_idle_server_maintenance(void)
                    idle_count, total_non_dead);
            }
            for (i = 0; i < free_length; ++i) {
-               make_child(ap_server_conf, free_slots[i], now);
+               make_child(ap_server_conf, free_slots[i]);
            }
            /* the next time around we want to spawn twice as many if this
             * wasn't good enough, but not if we've just done a graceful
@@ -1109,7 +1107,7 @@ int ap_mpm_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s)
                    /* we're still doing a 1-for-1 replacement of dead
                        * children with new children
                        */
-                   make_child(ap_server_conf, thread_slot, time(0));
+                   make_child(ap_server_conf, thread_slot);
                    --remaining_children_to_start;
                }
 #if APR_HAS_OTHER_CHILD