XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
spin_lock.hpp
Go to the documentation of this file.
1 
5 #pragma once
6 
8 
9 #include <atomic>
10 
11 namespace xtd{
12  namespace concurrent{
14  template <typename _WaitPolicyT = null_wait_policy>
16  std::atomic < uint32_t > _lock;
17  public:
18  using wait_policy_type = _WaitPolicyT;
19  static constexpr uint32_t LockedValue = 0x80000000;
21 
22  ~spin_lock_base() = default;
23  spin_lock_base(wait_policy_type oWait = wait_policy_type()) : _lock(0), _WaitPolicy(oWait){};
24  spin_lock_base(const spin_lock_base&) = delete;
25  spin_lock_base(spin_lock_base&&) = delete;
27  void lock(){
28  forever{
29  uint32_t compare = 0;
30  if (_lock.compare_exchange_strong(compare, LockedValue)){
31  break;
32  }
33  _WaitPolicy();
34  }
35  }
37  void unlock(){
38  _lock.store(0);
39  }
43  bool try_lock(){
44  uint32_t compare = 0;
45  return (_lock.compare_exchange_strong(compare, LockedValue));
46  }
47 
48  private:
49  wait_policy_type _WaitPolicy;
50  };
51 
52  using spin_lock = spin_lock_base<null_wait_policy>;
53  }
54 }
RAII pattern to automatically acquire and release the spin lock.
Definition: concurrent.hpp:30
shared declarations for the concurrent namespace
void lock()
Acquires the lock.
Definition: spin_lock.hpp:27
bool try_lock()
Attempts to acquire the lock.
Definition: spin_lock.hpp:43
void unlock()
Releases the lock.
Definition: spin_lock.hpp:37
A single owner spinning lock.
Definition: spin_lock.hpp:15