From: Joe Orton
Date: Tue, 30 Aug 2005 08:24:14 +0000 (+0000)
Subject: Fix a grammar mistake; note what happens when the timeout is
X-Git-Tag: 2.3.0~3043
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f1d428f25187001e75a12647b3cc940b934f47e;p=thirdparty%2Fapache%2Fhttpd.git
Fix a grammar mistake; note what happens when the timeout is
reached.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@264737 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/stopping.xml b/docs/manual/stopping.xml
index 87643307cd2..db22c6c4042 100644
--- a/docs/manual/stopping.xml
+++ b/docs/manual/stopping.xml
@@ -190,13 +190,15 @@ error. See above for a method of avoiding this.
The WINCH
or graceful-stop
signal causes
the parent process to advise the children to exit after
their current request (or to exit immediately if they're not
- serving anything). The parent will then remove it's PidFile and cease listening on
all ports. The parent will continue to run, and monitor children
which are handling requests. Once all children have finalised
and exited or the timeout specified by the GracefulShutdownTimeout has been
- reached, the parent will also exit.
+ reached, the parent will also exit. If the timeout is reached,
+ any remaining children will be sent the TERM
signal
+ to force them to exit.
A TERM
signal will immediately terminate the
parent process and all children when in the "graceful" state. However