From: Yann Ylavic Date: Thu, 18 Jan 2018 14:56:22 +0000 (+0000) Subject: Follow up to r1821504: same comment in event than in worker. X-Git-Tag: 2.5.0-alpha2-ci-test-only~2965 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1689af8ce741306430fbeaf20589a591eaecaad;p=thirdparty%2Fapache%2Fhttpd.git Follow up to r1821504: same comment in event than in worker. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1821505 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c index 783dfabf0be..8065ae287c2 100644 --- a/server/mpm/event/event.c +++ b/server/mpm/event/event.c @@ -2676,7 +2676,9 @@ static void child_main(int child_num_arg, int child_bucket) /* Just use the standard apr_setup_signal_thread to block all signals * from being received. The child processes no longer use signals for - * any communication with the parent process. + * any communication with the parent process. Let's also do this before + * child_init() hooks are called and possibly create threads that + * otherwise could "steal" (implicitely) MPM's signals. */ rv = apr_setup_signal_thread(); if (rv != APR_SUCCESS) {