mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[NTOS] Consistently use MUTANT_INCREMENT.
Spotted by Hermès.
This commit is contained in:
parent
83b85e2124
commit
6b3f309a08
3 changed files with 6 additions and 6 deletions
|
@ -192,7 +192,7 @@ KeReleaseMutex(IN PKMUTEX Mutex,
|
|||
ASSERT_MUTANT(Mutex);
|
||||
|
||||
/* There's no difference at this level between the two */
|
||||
return KeReleaseMutant(Mutex, 1, FALSE, Wait);
|
||||
return KeReleaseMutant(Mutex, MUTANT_INCREMENT, FALSE, Wait);
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -194,7 +194,7 @@ Cleanup:
|
|||
//
|
||||
// Release the lock
|
||||
//
|
||||
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
|
||||
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
|
||||
KeLeaveCriticalRegion();
|
||||
|
||||
//
|
||||
|
|
|
@ -991,7 +991,7 @@ MmUnloadSystemImage(IN PVOID ImageHandle)
|
|||
|
||||
/* Release the system lock and return */
|
||||
Done:
|
||||
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
|
||||
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
|
||||
KeLeaveCriticalRegion();
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
@ -1623,7 +1623,7 @@ MiFindInitializationCode(OUT PVOID *StartVa,
|
|||
|
||||
/* Release the locks and return */
|
||||
ExReleaseResourceLite(&PsLoadedModuleResource);
|
||||
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
|
||||
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
|
||||
KeLeaveCriticalRegion();
|
||||
}
|
||||
|
||||
|
@ -2972,7 +2972,7 @@ LoaderScan:
|
|||
else if (!Section)
|
||||
{
|
||||
/* It wasn't loaded, and we didn't have a previous attempt */
|
||||
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
|
||||
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
|
||||
KeLeaveCriticalRegion();
|
||||
LockOwned = FALSE;
|
||||
|
||||
|
@ -3324,7 +3324,7 @@ Quickie:
|
|||
if (LockOwned)
|
||||
{
|
||||
/* Release the lock */
|
||||
KeReleaseMutant(&MmSystemLoadLock, 1, FALSE, FALSE);
|
||||
KeReleaseMutant(&MmSystemLoadLock, MUTANT_INCREMENT, FALSE, FALSE);
|
||||
KeLeaveCriticalRegion();
|
||||
LockOwned = FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue