Sane C++ Libraries
C++ Platform Abstraction Libraries
SC::MemoryAllocator::Statistics Struct Reference

Holds Statistics about how many allocations/release have been issued. More...

#include <Memory.h>

Public Attributes

size_t numAllocate = 0
 How many times MemoryAllocator::allocate has been called. More...
 
size_t numReallocate = 0
 How many times MemoryAllocator::reallocate has been called. More...
 
size_t numRelease = 0
 How many times MemoryAllocator::release has been called. More...
 

Detailed Description

Holds Statistics about how many allocations/release have been issued.

Member Data Documentation

◆ numAllocate

size_t SC::MemoryAllocator::Statistics::numAllocate = 0

How many times MemoryAllocator::allocate has been called.

◆ numReallocate

size_t SC::MemoryAllocator::Statistics::numReallocate = 0

How many times MemoryAllocator::reallocate has been called.

◆ numRelease

size_t SC::MemoryAllocator::Statistics::numRelease = 0

How many times MemoryAllocator::release has been called.


The documentation for this struct was generated from the following file: