mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
Disable locks for now.
svn path=/trunk/; revision=40019
This commit is contained in:
parent
aa365b7e33
commit
a49345f0c1
1 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ MiMapPageInHyperSpace(IN PEPROCESS Process,
|
|||
// Acquire the hyperlock
|
||||
//
|
||||
ASSERT(Process == PsGetCurrentProcess());
|
||||
KeAcquireSpinLock(&Process->HyperSpaceLock, OldIrql);
|
||||
//KeAcquireSpinLock(&Process->HyperSpaceLock, OldIrql);
|
||||
|
||||
//
|
||||
// Now get the first free PTE
|
||||
|
@ -129,8 +129,8 @@ MiUnmapPageInHyperSpace(IN PEPROCESS Process,
|
|||
//
|
||||
// Release the hyperlock
|
||||
//
|
||||
ASSERT(KeGetCurrentIrql() == DISPATCH_LEVEL);
|
||||
KeReleaseSpinLock(&Process->HyperSpaceLock, OldIrql);
|
||||
//ASSERT(KeGetCurrentIrql() == DISPATCH_LEVEL);
|
||||
//KeReleaseSpinLock(&Process->HyperSpaceLock, OldIrql);
|
||||
}
|
||||
|
||||
PVOID
|
||||
|
|
Loading…
Reference in a new issue