24 std::atomic<bool> m_lock = {
false };
34 if (!m_lock.exchange(
true, std::memory_order_acquire))
38 while (m_lock.load(std::memory_order_relaxed)) {
43#elif _M_IX86 || _M_X64
46 asm volatile(
"yield");
47#elif __i386__ || __x86_64__
48 __builtin_ia32_pause();
64 !m_lock.load(std::memory_order_relaxed) &&
65 !m_lock.exchange(
true, std::memory_order_acquire);
73 m_lock.store(
false, std::memory_order_release);
Spin-lock.
Definition spinlock.hpp:22
bool try_lock() noexcept
Attempts to acquire the lock for the current execution agent (thread, process, task) without blocking...
Definition spinlock.hpp:59
void lock() noexcept
Blocks until a lock can be acquired for the current execution agent (thread, process,...
Definition spinlock.hpp:30
void unlock() noexcept
Releases the non-shared lock held by the execution agent.
Definition spinlock.hpp:71