From: Roy T. Fielding Date: Thu, 26 Aug 1999 17:32:02 +0000 (+0000) Subject: Replace comment about SIGUSR1 with SIGWINCH. X-Git-Tag: PRE_APR_CHANGES~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c77235fe4eed76ed8f7217abd9d723e920e5a470;p=apache Replace comment about SIGUSR1 with SIGWINCH. Submitted by: Manoj Kasichainula git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83793 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_so.c b/modules/mappers/mod_so.c index 0f0b63d37c..f0c2a7b7db 100644 --- a/modules/mappers/mod_so.c +++ b/modules/mappers/mod_so.c @@ -58,7 +58,7 @@ /* * This module is used to load Apache modules at runtime. This means that the * server functionality can be extended without recompiling and even without - * taking the server down at all. Only a HUP or USR1 signal needs to be send + * taking the server down at all. Only a HUP or WINCH signal needs to be send * to the server to reload the dynamically loaded modules. * * To use, you'll first need to build your module as a shared library, then @@ -97,7 +97,7 @@ * directive to get these log messages). * * If you edit the LoadModule directives while the server is live you can get - * Apache to re-load the modules by sending it a HUP or USR1 signal as normal. + * Apache to re-load the modules by sending it a HUP or WINCH signal as normal. * You can use this to dynamically change the capability of your server * without bringing it down. *