Module: wine Branch: master Commit: bd7595af7bbf595998511fcb72720df4a6193392 URL: http://source.winehq.org/git/wine.git/?a=commit;h=bd7595af7bbf595998511fcb72...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Feb 13 17:17:58 2007 +0100
ntdll: Allow APCs to run while waiting for a debug event reply.
---
dlls/ntdll/exception.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/exception.c b/dlls/ntdll/exception.c index a2f16c5..be82a84 100644 --- a/dlls/ntdll/exception.c +++ b/dlls/ntdll/exception.c @@ -198,7 +198,7 @@ static NTSTATUS send_debug_event( EXCEPT 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 ) {