Add expansion table and overflow handling for pool tag tracking

This commit is contained in:
2026-03-24 08:13:05 +01:00
committed by CodingWorkshop Signing Team
parent 5fa948d57e
commit f18c9ca5b4
3 changed files with 270 additions and 1 deletions

View File

@@ -9,6 +9,12 @@
#include <xtos.hh>
/* Expansion table used to track pool memory allocations */
PPOOL_TRACKING_TABLE MM::Allocator::AllocationsTrackingExpansionTable;
/* Total number of entries in the expansion allocations tracking table */
SIZE_T MM::Allocator::AllocationsTrackingExpansionTableSize;
/* Global table used to track pool memory allocations */
PPOOL_TRACKING_TABLE MM::Allocator::AllocationsTrackingTable;