Rephrase comments for consistency
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 28s
Builds / ExectOS (i686, release) (push) Successful in 26s
Builds / ExectOS (amd64, debug) (push) Successful in 37s
Builds / ExectOS (i686, debug) (push) Successful in 36s

This commit is contained in:
2026-03-24 23:07:06 +01:00
parent adff181f5a
commit 970902f3f9

View File

@@ -1359,7 +1359,7 @@ MM::Allocator::InitializeAllocationsTracking(VOID)
/* Check if the allocation failed duefor a single entry */ /* Check if the allocation failed duefor a single entry */
if(AllocationsTrackingTableSize == 1) if(AllocationsTrackingTableSize == 1)
{ {
/* Failed to initialize the pool tracker, kernel panic */ /* Failed to initialize the pool tracker, raise kernel panic */
KE::Crash::Panic(0x41, TableSize, (ULONG_PTR)~0, (ULONG_PTR)~0, (ULONG_PTR)~0); KE::Crash::Panic(0x41, TableSize, (ULONG_PTR)~0, (ULONG_PTR)~0, (ULONG_PTR)~0);
} }
@@ -1469,7 +1469,7 @@ MM::Allocator::InitializeBigAllocationsTracking(VOID)
/* Check if the allocation failed duefor a single entry */ /* Check if the allocation failed duefor a single entry */
if(BigAllocationsTrackingTableSize == 1) if(BigAllocationsTrackingTableSize == 1)
{ {
/* Failed to initialize the pool tracker, kernel panic */ /* Failed to initialize the pool tracker, raise kernel panic */
KE::Crash::Panic(0x41, TableSize, (ULONG_PTR)~0, (ULONG_PTR)~0, (ULONG_PTR)~0); KE::Crash::Panic(0x41, TableSize, (ULONG_PTR)~0, (ULONG_PTR)~0, (ULONG_PTR)~0);
} }