From a1689af8ce741306430fbeaf20589a591eaecaad Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Thu, 18 Jan 2018 14:56:22 +0000 Subject: [PATCH] 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 --- server/mpm/event/event.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) { -- 2.47.3