Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 18099 invoked by uid 500); 21 Mar 2002 16:06:52 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 18088 invoked by uid 500); 21 Mar 2002 16:06:52 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 21 Mar 2002 16:06:51 -0000 Message-ID: <20020321160651.9371.qmail@icarus.apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server/mpm/worker worker.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 02/03/21 08:06:51 Modified: server/mpm/worker worker.c Log: make the comment for the call to apr_signal_thread() a little more correct about what it is going to do Revision Changes Path 1.101 +1 -1 httpd-2.0/server/mpm/worker/worker.c Index: worker.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/mpm/worker/worker.c,v retrieving revision 1.100 retrieving revision 1.101 diff -u -r1.100 -r1.101 --- worker.c 21 Mar 2002 03:40:23 -0000 1.100 +++ worker.c 21 Mar 2002 16:06:51 -0000 1.101 @@ -1133,7 +1133,7 @@ /* 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