mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- Get rid of a confusing goto and call KiUnwaitThread directly. This was a remnant of some code refactoring.
svn path=/trunk/; revision=35010
This commit is contained in:
@@ -207,7 +207,6 @@ KiInsertQueueApc(IN PKAPC Apc,
|
||||
Status = STATUS_KERNEL_APC;
|
||||
|
||||
/* Wake up the thread */
|
||||
Unwait:
|
||||
KiUnwaitThread(Thread, Status, PriorityBoost);
|
||||
}
|
||||
else if (Thread->State == GateWait)
|
||||
@@ -240,7 +239,9 @@ Unwait:
|
||||
/* Set user-mode APC pending */
|
||||
Thread->ApcState.UserApcPending = TRUE;
|
||||
Status = STATUS_USER_APC;
|
||||
goto Unwait;
|
||||
|
||||
/* Wake up the thread */
|
||||
KiUnwaitThread(Thread, Status, PriorityBoost);
|
||||
}
|
||||
|
||||
/* Release dispatcher lock */
|
||||
|
||||
Reference in New Issue
Block a user