From fac4558462cb668581c1a6564876f58093901b9c Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Fri, 14 Dec 2018 16:28:01 -0500 Subject: [PATCH] sync: Add RecursiveMutex type alias --- src/sync.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sync.h b/src/sync.h index 40709bdd7..3857eda56 100644 --- a/src/sync.h +++ b/src/sync.h @@ -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; typedef AnnotatedMixin CCriticalSection; /** Wrapped mutex: supports waiting but not recursive locking */