14 template <
typename _WaitPolicyT = null_wait_policy>
16 std::atomic < uint32_t > _lock;
18 using wait_policy_type = _WaitPolicyT;
19 static constexpr uint32_t LockedValue = 0x80000000;
23 spin_lock_base(wait_policy_type oWait = wait_policy_type()) : _lock(0), _WaitPolicy(oWait){};
30 if (_lock.compare_exchange_strong(compare, LockedValue)){
45 return (_lock.compare_exchange_strong(compare, LockedValue));
49 wait_policy_type _WaitPolicy;
52 using spin_lock = spin_lock_base<null_wait_policy>;
RAII pattern to automatically acquire and release the spin lock.
shared declarations for the concurrent namespace
void lock()
Acquires the lock.
bool try_lock()
Attempts to acquire the lock.
void unlock()
Releases the lock.
A single owner spinning lock.