2022-12-08 19:34:15 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: HeapStats.hpp
|
|
|
|
Date: 2022-12-07
|
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Aurora::Memory
|
|
|
|
{
|
|
|
|
struct HeapStats
|
|
|
|
{
|
2023-01-15 06:05:22 +00:00
|
|
|
AuUInt64 qwBytesAllocatedLifetime {};
|
|
|
|
AuUInt64 qwBytesFreeLifetime {};
|
2022-12-08 19:34:15 +00:00
|
|
|
|
|
|
|
AuUInt uBytesCapacity {};
|
|
|
|
|
|
|
|
AuUInt uBytesLiveCounter {};
|
|
|
|
AuUInt uBytesPeakCounter {};
|
|
|
|
|
|
|
|
bool bIsSharedWithOtherHeaps {};
|
|
|
|
};
|
|
|
|
}
|