summaryrefslogtreecommitdiff
path: root/docs/manual/stopping.html.en
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2005-09-07 16:14:29 +0000
committerAndré Malo <nd@apache.org>2005-09-07 16:14:29 +0000
commit1769dd1e972e1f3cbf06af4162e6801bf847d719 (patch)
tree01b67a5869eaba5a3a8f5a4ce79da55c3bf1d69b /docs/manual/stopping.html.en
parent54bb998b3a475e4c599cf2858780d7b218ecdee9 (diff)
downloadhttpd-1769dd1e972e1f3cbf06af4162e6801bf847d719.tar.gz
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@279368 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/stopping.html.en')
-rw-r--r--docs/manual/stopping.html.en6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/manual/stopping.html.en b/docs/manual/stopping.html.en
index 085da7f016..fd246ac526 100644
--- a/docs/manual/stopping.html.en
+++ b/docs/manual/stopping.html.en
@@ -189,11 +189,13 @@ error. See above for a method of avoiding this.</div>
<p>The <code>WINCH</code> or <code>graceful-stop</code> signal causes
the parent process to <em>advise</em> 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 <code class="directive"><a href="./mod/mpm_common.html#pidfile">PidFile</a></code> and cease listening on
+ serving anything). The parent will then remove its <code class="directive"><a href="./mod/mpm_common.html#pidfile">PidFile</a></code> 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 <code class="directive"><a href="./mod/mpm_common.html#gracefulshutdowntimeout">GracefulShutdownTimeout</a></code> has been
- reached, the parent will also exit.</p>
+ reached, the parent will also exit. If the timeout is reached,
+ any remaining children will be sent the <code>TERM</code> signal
+ to force them to exit.</p>
<p>A <code>TERM</code> signal will immediately terminate the
parent process and all children when in the "graceful" state. However