Implement initial memory manager infrastructure #24

Open
harraiken wants to merge 198 commits from memmgr into master
Showing only changes of commit 44f27fad28 - Show all commits

View File

@@ -1146,6 +1146,10 @@ MM::Pfn::ScanMemoryDescriptors(VOID)
PLOADER_MEMORY_DESCRIPTOR MemoryDescriptor; PLOADER_MEMORY_DESCRIPTOR MemoryDescriptor;
PFN_NUMBER FreePages; PFN_NUMBER FreePages;
/* Initialize the lowest and highest physical page numbers */
LowestPhysicalPage = ~0;
HighestPhysicalPage = 0;
/* Initially, set number of free pages to 0 */ /* Initially, set number of free pages to 0 */
FreePages = 0; FreePages = 0;