From: Jeff Trawick Date: Thu, 21 Mar 2002 16:06:51 +0000 (+0000) Subject: make the comment for the call to apr_signal_thread() a little more X-Git-Tag: 2.0.34~194 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3289de6264bb0056bc318edcc81790f7a7a49637;p=apache make the comment for the call to apr_signal_thread() a little more correct about what it is going to do git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94091 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/worker/worker.c b/server/mpm/worker/worker.c index 3a33e7bf60..b57d1139d1 100644 --- a/server/mpm/worker/worker.c +++ b/server/mpm/worker/worker.c @@ -1133,7 +1133,7 @@ static void child_main(int child_num_arg) /* If we are only running in one_process mode, we will want to * still handle signals. */ if (one_process) { - /* Set up a signal handler for this thread. */ + /* Block until we get a terminating signal. */ apr_signal_thread(check_signal); /* make sure the start thread has finished; signal_workers() * and join_workers() depend on that