From 60feeb2f5ada00045bc7e7948c2db257ed14c760 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Mon, 10 May 2010 20:47:59 +0000 Subject: [PATCH] prefork MPM: Run cleanups for final request when process exits gracefully. PR: 43857 Submitted by: Tom Donovan, simplified slightly by me git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942897 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 3 +++ server/mpm/prefork/prefork.c | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index e7ec7a405a..7bc155f7aa 100644 --- a/CHANGES +++ b/CHANGES @@ -28,6 +28,9 @@ Changes with Apache 2.3.7 processing is completed, avoiding orphaned callback pointers. [Brett Gervasoni , Jeff Trawick] + *) prefork MPM: Run cleanups for final request when process exits gracefully. + PR 43857. [Tom Donovan, Jeff Trawick] + *) ab: fix number of requests sent by ab when keepalive is enabled. PR 48497. [Bryn Dole ] diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index 358a9997a1..b1a93c0702 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -549,12 +549,6 @@ static void child_main(int child_num_arg) conn_rec *current_conn; void *csd; - /* - * (Re)initialize this child to a pre-connection state. - */ - - apr_pool_clear(ptrans); - if ((ap_max_requests_per_child > 0 && requests_this_child++ >= ap_max_requests_per_child)) { clean_child_exit(0); @@ -668,6 +662,12 @@ static void child_main(int child_num_arg) ap_lingering_close(current_conn); } + /* + * (Re)initialize this child to a pre-connection state. + */ + + apr_pool_clear(ptrans); + /* Check the pod and the generation number after processing a * connection so that we'll go away if a graceful restart occurred * while we were processing the connection or we are the lucky -- 2.40.0