WIN32_HEAP_STATISTICS
Contains statistics for a given heap.Syntax
Members
SegmentCommitSizeType: SIZE_T The total commit size of the segment backed portion of the Win32 heap. LargeAllocCommitSize
Type: SIZE_T The total commit size for large allocations that are not cached by the segment heap. reserved
Type: SIZE_T Reserved for future use.
Remarks
This structure is used by XMemGetWin32HeapStatistics to provide statistics about a given Win32 heap. The Win32 heap services allocations either through cached memory in the “segment backed” portion of the heap or by direct calls to VirtualAlloc on behalf of the calling code. SegmentCommitSize tracks the total commit that is owned by the segment backed portion of the heap. LargeAllocCommitSize tracks the total commit that is used by allocations that are serviced directly by VirtualAlloc. The sum of both of these fields provides an estimation of the memory in use by a Win32 heap.Requirements
Header: xmem.h Supported platforms: XBOX One family consoles and XBOX Series consolesSee also
Diagnostics and memory trackingXMemGetWin32HeapStatistics
XMem
