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
*/
#pragma once
#include <atomic>
namespace kcp {
class Spinlock {
std::atomic_flag atomic_flag{ATOMIC_FLAG_INIT};
public:
void Aquire();
void Release();
};
};