feat(kcp, pfa): Add kcp::Spinlock class

This commit is contained in:
Daniel Hammer
2025-03-12 19:55:05 +01:00
parent bd8a1fdbca
commit 2b6c2fa827
7 changed files with 57 additions and 5 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
* Spinlock.cpp
* C++ Spinlock
* Copyright (c) 2025 Daniel Hammer
*/
#include "Spinlock.hpp"
namespace kcp {
void Spinlock::Aquire() {
while (atomic_flag.test_and_set(std::memory_order_acquire));
}
void Spinlock::Release() {
atomic_flag.clear(std::memory_order_release);
}
};