12 namespace concurrent {
14 template<
typename _WaitPolicyT = null_wait_policy>
16 using wait_policy_type = _WaitPolicyT;
17 using hash_type = std::hash<std::thread::id>;
18 std::atomic<size_t> _lock;
21 wait_policy_type _WaitPolicy;
27 recursive_spin_lock_base(wait_policy_type oWait = wait_policy_type()) : _lock(-1), _lock_count(0), _WaitPolicy(oWait) {};
35 auto ThisID = _hash(std::this_thread::get_id());
36 if (!_lock.compare_exchange_strong(bad_id, ThisID) && !(_lock.compare_exchange_strong(ThisID, ThisID))) {
50 XTD_ASSERT(_lock.load() == _hash(std::this_thread::get_id()));
51 if (0 == --_lock_count) {
RAII pattern to automatically acquire and release the spin lock.
shared declarations for the concurrent namespace