summaryrefslogtreecommitdiffstats
path: root/server/mpm/prefork/prefork.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-02-06 16:52:27 +0100
committerJeff Trawick <trawick@apache.org>2001-02-06 16:52:27 +0100
commit3b84240987b3576d067e0d0e266886393146eb11 (patch)
tree955963c109280abb150c28d748e7222bc226e5e9 /server/mpm/prefork/prefork.c
parentGet OS/2 MPM running again after the reunification of the scoreboard code. (diff)
downloadapache2-3b84240987b3576d067e0d0e266886393146eb11.tar.xz
apache2-3b84240987b3576d067e0d0e266886393146eb11.zip
axe an unused parm to make_child(); this gets rid of a warning
on AIX about not having a prototype for time() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87990 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--server/mpm/prefork/prefork.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c
index ef826cdd9b..172585b88c 100644
--- a/server/mpm/prefork/prefork.c
+++ b/server/mpm/prefork/prefork.c
@@ -820,7 +820,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;
@@ -903,13 +903,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[i][0].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;
@@ -935,7 +934,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;
@@ -1020,7 +1018,7 @@ static void perform_idle_server_maintenance(void)
}
for (i = 0; i < free_length; ++i) {
#ifdef TPF
- if(make_child(ap_server_conf, free_slots[i], now) == -1) {
+ if (make_child(ap_server_conf, free_slots[i]) == -1) {
if(free_length == 1) {
shutdown_pending = 1;
ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_EMERG, 0, ap_server_conf,
@@ -1028,7 +1026,7 @@ static void perform_idle_server_maintenance(void)
}
}
#else
- make_child(ap_server_conf, free_slots[i], now);
+ make_child(ap_server_conf, free_slots[i]);
#endif /* TPF */
}
/* the next time around we want to spawn twice as many if this
@@ -1159,7 +1157,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, child_slot, time(0));
+ make_child(ap_server_conf, child_slot);
--remaining_children_to_start;
}
#if APR_HAS_OTHER_CHILD