diff options
author | Colm MacCarthaigh <colm@apache.org> | 2005-08-28 01:22:50 +0200 |
---|---|---|
committer | Colm MacCarthaigh <colm@apache.org> | 2005-08-28 01:22:50 +0200 |
commit | fec621ccba7a20c66dcdbe5a0bbf7f6d0f8d5592 (patch) | |
tree | 02d1dc489df94bf2cef43e7873ae580c2db6385a /docs | |
parent | CGId keeps a copy of the listening sockets open, which interferes with a (diff) | |
download | apache2-fec621ccba7a20c66dcdbe5a0bbf7f6d0f8d5592.tar.xz apache2-fec621ccba7a20c66dcdbe5a0bbf7f6d0f8d5592.zip |
Implement a graceful-stop for the worker MPM. We close our listeners, and then
ask each child process to do the same. We then monitor until all children have
exited.
The change to ap_start_shutdown(void) to ap_start_shutdown(int) may look like
an external API change, but the function is defined static, and used only in
one place.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@241819 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/mpm_common.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/mod/mpm_common.xml b/docs/manual/mod/mpm_common.xml index 17daf039c4..e1b2493ced 100644 --- a/docs/manual/mod/mpm_common.xml +++ b/docs/manual/mod/mpm_common.xml @@ -163,7 +163,7 @@ will exit.</description> <syntax>GracefulShutDownTimeout <var>seconds</var></syntax> <default>GracefulShutDownTimeout 0</default> <contextlist><context>server config</context></contextlist> -<modulelist><module>prefork</module></modulelist> +<modulelist><module>prefork</module><module>worker</module></modulelist> <compatibility>Available in version 2.4 and later</compatibility> <usage> |