Revert "added totalsizeoccupied stat"

This reverts commit 46fb0e20c6.
This commit is contained in:
2026-06-10 07:55:08 +02:00
parent 46fb0e20c6
commit e8b919f576
2 changed files with 3 additions and 16 deletions

View File

@@ -68,20 +68,15 @@ typedef struct _MIHP_HeapConfig
typedef struct _MIHP_HeapStats
{
size_t NumMemoryAreas;
size_t NumTotalSegments;
size_t NumTotalOccupiedSegments;
size_t TotalSize;
size_t TotalSizeOccupied;
} MIHP_HeapStats;
// This structs size must be multiple of 8
typedef struct _MIHP_HeapMemoryAreaHeader
{
size_t AreaSize;
size_t AreaSizeOccupied;
size_t NumSegments;
size_t NumOccupiedSegments;