From: Jeff Trawick Date: Sun, 24 Feb 2002 20:41:19 +0000 (+0000) Subject: don't wait nearly so long for child processes to go away X-Git-Tag: 2.0.33~140 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2580e701412e7eec86a9150305fe0bfec9cdc824;p=thirdparty%2Fapache%2Fhttpd.git don't wait nearly so long for child processes to go away the adjustment of the wait time was done too soon now the code should be consistent with 1.3 behavior git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93560 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index 29075e67e8a..761e917effe 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -114,8 +114,8 @@ void ap_reclaim_child_processes(int terminate) * necessary, but we need to allow children a few moments to exit. * Set delay with an exponential backoff. */ - waittime = waittime * 4; apr_sleep(waittime); + waittime = waittime * 4; /* now see who is done */ not_dead_yet = 0;