From: Colm MacCarthaigh Date: Fri, 26 Aug 2005 16:13:17 +0000 (+0000) Subject: Silly me, I forgot to commit this; the definitions for the GRACEFUL_STOP X-Git-Tag: 2.3.0~3069 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbb8aeee0237265af89587728a9bde0be7a1e96a;p=thirdparty%2Fapache%2Fhttpd.git Silly me, I forgot to commit this; the definitions for the GRACEFUL_STOP signal. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@240274 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/mpm_common.h b/include/mpm_common.h index 161b48e486c..478810d0522 100644 --- a/include/mpm_common.h +++ b/include/mpm_common.h @@ -65,6 +65,15 @@ extern "C" { /* Signal used to gracefully restart (as a quoted string) */ #define AP_SIG_GRACEFUL_STRING "SIGUSR1" +/* Signal used to gracefully stop */ +#define AP_SIG_GRACEFUL_STOP SIGWINCH + +/* Signal used to gracefully stop (without SIG prefix) */ +#define AP_SIG_GRACEFUL_STOP_SHORT WINCH + +/* Signal used to gracefully stop (as a quoted string) */ +#define AP_SIG_GRACEFUL_STOP_STRING "SIGWINCH" + /** * Make sure all child processes that have been spawned by the parent process * have died. This includes process registered as "other_children".