feat(heap): Create new HeapAllocator implementation

This commit is contained in:
Daniel Hammer
2025-03-15 11:29:05 +01:00
parent 2b6c2fa827
commit ff347b1da5
8 changed files with 125 additions and 36 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
#include "Spinlock.hpp"
namespace kcp {
void Spinlock::Aquire() {
void Spinlock::Acquire() {
while (atomic_flag.test_and_set(std::memory_order_acquire));
}