Trigger low memory allocation before PFN database initialization
All checks were successful
Builds / ExectOS (i686, debug) (push) Successful in 30s
Builds / ExectOS (amd64, debug) (push) Successful in 32s
Builds / ExectOS (amd64, release) (push) Successful in 39s
Builds / ExectOS (i686, release) (push) Successful in 38s

This commit is contained in:
2026-06-12 13:21:22 +02:00
parent c702152cca
commit 1a062ca05f

View File

@@ -232,6 +232,9 @@ XTAPI
VOID VOID
MM::Manager::InitializeMemoryManager(VOID) MM::Manager::InitializeMemoryManager(VOID)
{ {
/* Allocate low memory from the hardware pool before initializing the memory manager */
MM::HardwarePool::AllocateLowMemory(NULLPTR, NULLPTR);
/* Scan memory descriptors provided by the boot loader */ /* Scan memory descriptors provided by the boot loader */
MM::Pfn::ScanMemoryDescriptors(); MM::Pfn::ScanMemoryDescriptors();