- Fix behavior of kernel APCs interrupting waits on gate objects. Patch by Alex Ionescu.

svn path=/trunk/; revision=37714
This commit is contained in:
Cameron Gutman 2008-11-29 02:57:21 +00:00
parent ffb80a044e
commit 28d4b20129

View file

@ -242,7 +242,7 @@ KiInsertQueueApc(IN PKAPC Apc,
if (Thread->Queue) Thread->Queue->CurrentCount++;
/* Put into deferred ready list with this status */
Status = STATUS_KERNEL_APC;
Thread->WaitStatus = STATUS_KERNEL_APC;
KiInsertDeferredReadyList(Thread);
}