]> granicus.if.org Git - apache/commitdiff
Silly me, I forgot to commit this; the definitions for the GRACEFUL_STOP
authorColm MacCarthaigh <colm@apache.org>
Fri, 26 Aug 2005 16:13:17 +0000 (16:13 +0000)
committerColm MacCarthaigh <colm@apache.org>
Fri, 26 Aug 2005 16:13:17 +0000 (16:13 +0000)
signal.

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

include/mpm_common.h

index 161b48e486cc7e3a9449f942fe3ac74eaced445b..478810d0522892adf733029ffd629256e8456e0e 100644 (file)
@@ -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".