15 template <
typename _WaitPolicyT>
17 std::atomic<uint32_t> _lock;
18 static constexpr uint32_t write_lock_bit = 0x80000000;
19 static constexpr uint32_t read_bits_mask = ~write_lock_bit;
20 _WaitPolicyT _WaitPolicy;
22 using wait_policy_type = _WaitPolicyT;
23 rw_lock_base(wait_policy_type oWait = wait_policy_type()) : _lock(0), _WaitPolicy(oWait){}
26 return _lock.load() & read_bits_mask;
32 auto iOriginal = _lock.load();
33 if (write_lock_bit == iOriginal){
37 if (_lock.compare_exchange_strong(iOriginal, iOriginal - 1)){
47 auto iOriginal = _lock.load() & read_bits_mask;
48 if (_lock.compare_exchange_strong(iOriginal, 1 + iOriginal)){
58 auto iOriginal = _lock.load() & read_bits_mask;
59 return _lock.compare_exchange_strong(iOriginal, 1 + iOriginal);
63 uint32_t iOriginal = 0;
64 while (!_lock.compare_exchange_strong(iOriginal, write_lock_bit)){
72 uint32_t iOriginal = 0;
73 return _lock.compare_exchange_strong(iOriginal, write_lock_bit);
bool try_lock_write()
attempts to acquire a write lock for exclusive access
uint32_t readers() const
Returns the number of active read locks.
shared declarations for the concurrent namespace
A multiple reader/single writer spin lock supports 2^31 simultaneous readers.
void unlock()
Frees the write lock or decrements the reader count.
bool try_lock_read()
tries to acquire a shared read lock
void lock_write()
acquires a write lock for exclusive access
RAII pattern to acquire and release a write lock.
RAII pattern to acquire and release a read lock.
void lock_read()
Acquires a shared read lock.