20 FORCEINLINE
void operator ()(){}
25 FORCEINLINE
void operator ()(){ std::this_thread::yield(); }
29 template <
typename _Ty>
32 using spin_lock_type = _Ty;
34 explicit scope_locker(spin_lock_type& oLock) : _Lock(oLock){ _Lock.lock(); }
39 spin_lock_type& _Lock;
RAII pattern to automatically acquire and release the spin lock.
Simple multi reader/single writer spin lock.
concurrently push and pop items in a FILO stack
host, target and build configurations and settings Various components are purpose built for specific ...
Wait policy that yields the current thread.
Wait policy that does nothing. This is the default behavior.
simple user mode spin lock based on std::atomic
concurrently insert, query and delete items in an unordered hash map
concurrently push and pop items from a FIFO queue