1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Trimmed trailing whitespace

This commit is contained in:
Brian Fiete 2022-07-30 09:11:38 -04:00
parent 8eda627e2f
commit 14f20f10c8
28 changed files with 1659 additions and 1768 deletions

View file

@ -18,10 +18,10 @@ public:
public:
static const int BLOCK_SIZE = 4096;
addr_target mHotAreaStart;
int mHotAreaSize;
Beefy::Array<HotUseFlags> mHotAreaUsed;
Beefy::Array<HotUseFlags> mHotAreaUsed;
int mCurBlockIdx;
int mBlockAllocIdx; // Total blocks allocated, doesn't decrease with frees
@ -31,9 +31,9 @@ public:
public:
HotHeap(addr_target hotStart, int size);
HotHeap();
void AddTrackedRegion(addr_target hotStart, int size);
addr_target Alloc(int size);
void Release(addr_target addr, int size);
void MarkBlockReferenced(addr_target addr);