From bd7595af7bbf595998511fcb72720df4a6193392 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 13 Feb 2007 17:17:58 +0100 Subject: [PATCH] ntdll: Allow APCs to run while waiting for a debug event reply. --- dlls/ntdll/exception.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/exception.c b/dlls/ntdll/exception.c index a2f16c5d139..be82a84899d 100644 --- a/dlls/ntdll/exception.c +++ b/dlls/ntdll/exception.c @@ -198,7 +198,7 @@ static NTSTATUS send_debug_event( EXCEPTION_RECORD *rec, int first_chance, CONTE SERVER_END_REQ; if (!handle) return 0; - NTDLL_wait_for_multiple_objects( 1, &handle, 0, NULL, 0 ); + NTDLL_wait_for_multiple_objects( 1, &handle, SELECT_INTERRUPTIBLE, NULL, 0 ); SERVER_START_REQ( get_exception_status ) { -- 2.11.4.GIT