mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 20:59:44 +00:00
- Wake up a pushlock only if it wasn't waking already, not vice versa (was a typo in ExfAcquirePushLockExclusive, but was done correctly in ExfAcquirePushLockShared).
svn path=/trunk/; revision=34006
This commit is contained in:
parent
cd5d1959f0
commit
da950aee49
1 changed files with 1 additions and 1 deletions
|
@ -514,7 +514,7 @@ ExfAcquirePushLockExclusive(PEX_PUSH_LOCK PushLock)
|
|||
PtrToUlong(WaitBlock);
|
||||
|
||||
/* Check if the pushlock was already waking */
|
||||
if (OldValue.Waking) NeedWake = TRUE;
|
||||
if (!OldValue.Waking) NeedWake = TRUE;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue