mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Forgot one change to KeAcquireSpinLockAtDpcLevel.
svn path=/trunk/; revision=16753
This commit is contained in:
parent
3cccb4ec8d
commit
ec8a1499ee
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ KeFlushQueueApc(IN PKTHREAD Thread,
|
||||||
|
|
||||||
/* Lock the Dispatcher Database and APC Queue */
|
/* Lock the Dispatcher Database and APC Queue */
|
||||||
OldIrql = KeAcquireDispatcherDatabaseLock();
|
OldIrql = KeAcquireDispatcherDatabaseLock();
|
||||||
KeAcquireSpinLock(&Thread->ApcQueueLock, &OldIrql);
|
KeAcquireSpinLockAtDpcLevel(&Thread->ApcQueueLock);
|
||||||
|
|
||||||
ApcEntry = CurrentEntry = NULL;
|
ApcEntry = CurrentEntry = NULL;
|
||||||
while (!IsListEmpty(&Thread->ApcState.ApcListHead[PreviousMode]))
|
while (!IsListEmpty(&Thread->ApcState.ApcListHead[PreviousMode]))
|
||||||
|
|
Loading…
Reference in a new issue