13 #ifndef CORE_OWNED_MUTEX_H_
14 #define CORE_OWNED_MUTEX_H_
17 #include <condition_variable>
56 std::condition_variable _waitLock;
58 std::thread::id _ownerId;
void lock()
Lock this mutex.
Definition: owned_mutex.cpp:30
void unlock()
Unlock this mutex.
Definition: owned_mutex.cpp:47
A mutex with the concept of 'ownership'.
Definition: owned_mutex.h:27