Quantum 3 3.0.13

Public Member Functions | Public Attributes | List of all members
Quantum.Allocator.Heap.Stats Struct Reference

Statistics of the heap. More...

Public Member Functions

readonly override string ToString ()
 Create a debug string of the stats content. More...
 

Public Attributes

int BytesAllocated
 Total bytes allocated. More...
 
int BytesCommited
 Totoal bytes commited. More...
 
int BytesReserved
 Total bytes reserved. More...
 
int PagesFree
 Free pages. More...
 
int PagesFull
 Pages full. More...
 
int PagesUsed
 Pages in use. More...
 
int TotalMemory
 Total heap size. More...
 
int TotalPages
 Total page count. More...
 

Detailed Description

Statistics of the heap.

Member Function Documentation

◆ ToString()

readonly override string Quantum.Allocator.Heap.Stats.ToString ( )
inline

Create a debug string of the stats content.

Returns
Debug string

Member Data Documentation

◆ TotalMemory

int Quantum.Allocator.Heap.Stats.TotalMemory

Total heap size.

◆ TotalPages

int Quantum.Allocator.Heap.Stats.TotalPages

Total page count.

◆ PagesFree

int Quantum.Allocator.Heap.Stats.PagesFree

Free pages.

◆ PagesFull

int Quantum.Allocator.Heap.Stats.PagesFull

Pages full.

◆ PagesUsed

int Quantum.Allocator.Heap.Stats.PagesUsed

Pages in use.

◆ BytesAllocated

int Quantum.Allocator.Heap.Stats.BytesAllocated

Total bytes allocated.

◆ BytesReserved

int Quantum.Allocator.Heap.Stats.BytesReserved

Total bytes reserved.

◆ BytesCommited

int Quantum.Allocator.Heap.Stats.BytesCommited

Totoal bytes commited.