Implement initial memory manager infrastructure #24

Open
harraiken wants to merge 169 commits from memmgr into master
Showing only changes of commit 278def3081 - Show all commits

View File

@@ -165,7 +165,7 @@ MM::KernelPool::FreeKernelStack(IN PVOID Stack,
/* Convert the stack size into a page count */ /* Convert the stack size into a page count */
StackPages = SIZE_TO_PAGES(StackSize); StackPages = SIZE_TO_PAGES(StackSize);
/* Start guarded code block */ /* Start a guarded code block */
{ {
/* Acquire the PFN database lock */ /* Acquire the PFN database lock */
KE::QueuedSpinLockGuard SpinLock(SystemSpaceLock); KE::QueuedSpinLockGuard SpinLock(SystemSpaceLock);