]> granicus.if.org Git - apache/commitdiff
Fix a grammar mistake; note what happens when the timeout is
authorJoe Orton <jorton@apache.org>
Tue, 30 Aug 2005 08:24:14 +0000 (08:24 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 30 Aug 2005 08:24:14 +0000 (08:24 +0000)
reached.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@264737 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/stopping.xml

index 87643307cd271e9336027b06152c403bc8f2946a..db22c6c404299dfafafcb46bb95803346c1dd1ae 100644 (file)
@@ -190,13 +190,15 @@ error. See above for a method of avoiding this.</note>
     <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 <directive 
+    serving anything). The parent will then remove its <directive 
     module="mpm_common">PidFile</directive> 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 <directive 
     module="mpm_common">GracefulShutdownTimeout</directive> 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