- Forgot one change to KeAcquireSpinLockAtDpcLevel.

svn path=/trunk/; revision=16753
This commit is contained in:
Hartmut Birr 2005-07-26 19:15:08 +00:00
parent 3cccb4ec8d
commit ec8a1499ee

View file

@ -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]))