From 4f051ce51148102c7166ea60a1a9a0e902187389 Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Thu, 22 Oct 2015 01:58:28 +0200 Subject: [PATCH] ntdll-Wait_User_APC: Fix an outdated comment. --- ...ll-Block-signals-while-executing-system-APCs.patch | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/patches/ntdll-Wait_User_APC/0003-ntdll-Block-signals-while-executing-system-APCs.patch b/patches/ntdll-Wait_User_APC/0003-ntdll-Block-signals-while-executing-system-APCs.patch index 34400f77..41153ea2 100644 --- a/patches/ntdll-Wait_User_APC/0003-ntdll-Block-signals-while-executing-system-APCs.patch +++ b/patches/ntdll-Wait_User_APC/0003-ntdll-Block-signals-while-executing-system-APCs.patch @@ -1,14 +1,14 @@ -From db7522d47373208237a1b8806c72d06a21b3bb66 Mon Sep 17 00:00:00 2001 +From 39f5ce02a6524f23dbc4d8ea6dc602e9e47e15c6 Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Wed, 21 Oct 2015 18:53:58 +0200 Subject: ntdll: Block signals while executing system APCs. --- - dlls/ntdll/server.c | 46 +++++++++++++++++++++++++++++++++++++++------- - 1 file changed, 39 insertions(+), 7 deletions(-) + dlls/ntdll/server.c | 48 ++++++++++++++++++++++++++++++++++++++++-------- + 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/dlls/ntdll/server.c b/dlls/ntdll/server.c -index 7d8d1e9..d46d023 100644 +index 7d8d1e9..1173f4d 100644 --- a/dlls/ntdll/server.c +++ b/dlls/ntdll/server.c @@ -371,13 +371,30 @@ static int wait_select_reply( void *cookie ) @@ -35,7 +35,8 @@ index 7d8d1e9..d46d023 100644 +/*********************************************************************** * invoke_apc * - * Invoke a single APC. Return TRUE if a user APC has been run. +- * Invoke a single APC. Return TRUE if a user APC has been run. ++ * Invoke a single APC. */ -static BOOL invoke_apc( const apc_call_t *call, apc_result_t *result ) +static void invoke_apc( const apc_call_t *call, apc_result_t *result )