sync: Add RecursiveMutex type alias

pull/643/head
MarcoFalke 6 years ago
parent b53573e5c6
commit fac4558462
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548

@ -20,7 +20,7 @@
//////////////////////////////////////////////// ////////////////////////////////////////////////
/* /*
CCriticalSection mutex; RecursiveMutex mutex;
std::recursive_mutex mutex; std::recursive_mutex mutex;
LOCK(mutex); LOCK(mutex);
@ -104,6 +104,7 @@ public:
* Wrapped mutex: supports recursive locking, but no waiting * Wrapped mutex: supports recursive locking, but no waiting
* TODO: We should move away from using the recursive lock by default. * TODO: We should move away from using the recursive lock by default.
*/ */
using RecursiveMutex = AnnotatedMixin<std::recursive_mutex>;
typedef AnnotatedMixin<std::recursive_mutex> CCriticalSection; typedef AnnotatedMixin<std::recursive_mutex> CCriticalSection;
/** Wrapped mutex: supports waiting but not recursive locking */ /** Wrapped mutex: supports waiting but not recursive locking */

Loading…
Cancel
Save