Update panic invocations with detailed error context
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 28s
Builds / ExectOS (amd64, debug) (push) Successful in 30s
Builds / ExectOS (i686, debug) (push) Successful in 36s
Builds / ExectOS (i686, release) (push) Successful in 36s

This commit is contained in:
2026-03-16 16:00:21 +01:00
parent 184ce5735e
commit 3d7fe25471
2 changed files with 9 additions and 5 deletions

View File

@@ -105,7 +105,7 @@ MM::Manager::InitializeMemoryManager(VOID)
{
/* Insufficient physical pages, kernel panic */
DebugPrint(L"Insufficient physical pages! Install additional memory\n");
KE::Crash::Panic(0);
KE::Crash::Panic(0x7D, MM::Pfn::GetNumberOfPhysicalPages(), MM_MINIMUM_PHYSICAL_PAGES, 0x0, 0x2);
}
/* Compute page colors to reduce CPU cache conflicts */