LeviLamina
Loading...
Searching...
No Matches
VirtualAllocatorStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Memory {
6
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 8, ::std::atomic<uint64>> mTotalReservations;
12 ::ll::TypedStorage<8, 8, ::std::atomic<uint64>> mTotalCommits;
13 ::ll::TypedStorage<8, 8, ::std::atomic<uint64>> mReservedMemory;
14 ::ll::TypedStorage<8, 8, ::std::atomic<uint64>> mCommittedMemory;
15 // NOLINTEND
16};
17
18} // namespace Bedrock::Memory
Definition VirtualAllocatorStats.h:7