mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +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
|
// Acquire the hyperlock
|
||||||
//
|
//
|
||||||
ASSERT(Process == PsGetCurrentProcess());
|
ASSERT(Process == PsGetCurrentProcess());
|
||||||
KeAcquireSpinLock(&Process->HyperSpaceLock, OldIrql);
|
//KeAcquireSpinLock(&Process->HyperSpaceLock, OldIrql);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Now get the first free PTE
|
// Now get the first free PTE
|
||||||
|
@ -129,8 +129,8 @@ MiUnmapPageInHyperSpace(IN PEPROCESS Process,
|
||||||
//
|
//
|
||||||
// Release the hyperlock
|
// Release the hyperlock
|
||||||
//
|
//
|
||||||
ASSERT(KeGetCurrentIrql() == DISPATCH_LEVEL);
|
//ASSERT(KeGetCurrentIrql() == DISPATCH_LEVEL);
|
||||||
KeReleaseSpinLock(&Process->HyperSpaceLock, OldIrql);
|
//KeReleaseSpinLock(&Process->HyperSpaceLock, OldIrql);
|
||||||
}
|
}
|
||||||
|
|
||||||
PVOID
|
PVOID
|
||||||
|
|
Loading…
Reference in a new issue