feat(pfa, kcp): Add kcp::NoMallocVector and realloc in PFA

This commit is contained in:
Daniel Hammer
2025-03-12 17:18:31 +01:00
parent 53739b0059
commit bd8a1fdbca
4 changed files with 72 additions and 4 deletions
+2
View File
@@ -21,7 +21,9 @@ public:
PageFrameAllocator(LargestSection section);
void* Allocate();
void* ReallocConsecutive(void* ptr, int n);
void Free(void* ptr);
void Free(void* ptr, int n);
};
extern PageFrameAllocator* g_pfa;