Implement initial memory manager infrastructure #24

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

View File

@@ -121,14 +121,17 @@ MM::Manager::InitializeMemoryManager(VOID)
/* Initialize page table */
MM::Pte::InitializePageTable();
/* Initialize non-paged pool */
MM::Allocator::InitializeNonPagedPool();
/* Initialize system PTE space */
MM::Pte::InitializeSystemPteSpace();
/* Initialize non-paged pool */
MM::Allocator::InitializeNonPagedPool();
/* Initialize PFN database */
MM::Pfn::InitializePfnDatabase();
/* Flush TLB */
AR::CpuFunc::FlushTlb();
}
/**