Implement initial memory manager infrastructure #24

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

View File

@@ -20,10 +20,9 @@ XTAPI
VOID VOID
MM::Manager::InitializeMemoryLayout(VOID) MM::Manager::InitializeMemoryLayout(VOID)
{ {
ULONG PhysicalPages; ULONG_PTR PagedPoolSize, PteCount;
PFN_NUMBER PfnDatabaseSize, PhysicalPages;
/* Not finished yet */ ULONG PtesPerPage;
UNIMPLEMENTED;
/* Define the number of system PTEs */ /* Define the number of system PTEs */
NumberOfSystemPtes = MM_DEFAULT_NUMBER_SYSTEM_PTES; NumberOfSystemPtes = MM_DEFAULT_NUMBER_SYSTEM_PTES;