mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +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 */
|
||||
OldIrql = KeAcquireDispatcherDatabaseLock();
|
||||
KeAcquireSpinLock(&Thread->ApcQueueLock, &OldIrql);
|
||||
KeAcquireSpinLockAtDpcLevel(&Thread->ApcQueueLock);
|
||||
|
||||
ApcEntry = CurrentEntry = NULL;
|
||||
while (!IsListEmpty(&Thread->ApcState.ApcListHead[PreviousMode]))
|
||||
|
|
Loading…
Reference in a new issue