sync: Add RecursiveMutex type alias
This commit is contained in:
parent
b53573e5c6
commit
fac4558462
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
////////////////////////////////////////////////
|
||||
|
||||
/*
|
||||
CCriticalSection mutex;
|
||||
RecursiveMutex mutex;
|
||||
std::recursive_mutex mutex;
|
||||
|
||||
LOCK(mutex);
|
||||
|
@ -104,6 +104,7 @@ public:
|
|||
* Wrapped mutex: supports recursive locking, but no waiting
|
||||
* TODO: We should move away from using the recursive lock by default.
|
||||
*/
|
||||
using RecursiveMutex = AnnotatedMixin<std::recursive_mutex>;
|
||||
typedef AnnotatedMixin<std::recursive_mutex> CCriticalSection;
|
||||
|
||||
/** Wrapped mutex: supports waiting but not recursive locking */
|
||||
|
|
Loading…
Reference in a new issue