From c1246190bd1e78f4405c25b0dbf947f51914e88e Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 6 Feb 2002 21:09:26 +0000 Subject: [PATCH] If we only need to toggle the event, don't ask for the whole ball 'o wax. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93313 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/winnt/mpm_winnt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 038663a7c9..9a8a4e15d9 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -464,7 +464,7 @@ AP_DECLARE(void) ap_signal_parent(ap_signal_parent_e type) return; } - e = OpenEvent(EVENT_ALL_ACCESS, FALSE, signal_name); + e = OpenEvent(EVENT_MODIFY_STATE, FALSE, signal_name); if (!e) { /* Um, problem, can't signal the parent, which means we can't * signal ourselves to die. Ignore for now... -- 2.40.0