From: Daniel Dunbar Date: Tue, 17 Aug 2010 22:32:34 +0000 (+0000) Subject: CrashRecovery: Make CrashRecoveryContext static methods thread safe. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c0c815e887d72414894930b62221acc32488c2d0;p=oota-llvm.git CrashRecovery: Make CrashRecoveryContext static methods thread safe. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111307 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/CrashRecoveryContext.h b/include/llvm/Support/CrashRecoveryContext.h index d44d24ac95e..45a43fa1950 100644 --- a/include/llvm/Support/CrashRecoveryContext.h +++ b/include/llvm/Support/CrashRecoveryContext.h @@ -47,12 +47,10 @@ public: CrashRecoveryContext() : Impl(0) {} ~CrashRecoveryContext(); - /// \brief Enable crash recovery. This function is not thread safe, clients - /// should call it during startup or with a lock held. + /// \brief Enable crash recovery. static void Enable(); - /// \brief Disable crash recovery. This function is not thread safe, clients - /// should call it during startup or with a lock held. + /// \brief Disable crash recovery. static void Disable(); /// \brief Execute the provide callback function (with the given arguments) in diff --git a/lib/Support/CrashRecoveryContext.cpp b/lib/Support/CrashRecoveryContext.cpp index de981325394..d1ecbb74dac 100644 --- a/lib/Support/CrashRecoveryContext.cpp +++ b/lib/Support/CrashRecoveryContext.cpp @@ -10,6 +10,7 @@ #include "llvm/Support/CrashRecoveryContext.h" #include "llvm/ADT/SmallString.h" #include "llvm/Config/config.h" +#include "llvm/System/Mutex.h" #include "llvm/System/ThreadLocal.h" #include #include @@ -47,6 +48,7 @@ public: } +static sys::Mutex gCrashRecoveryContexMutex; static bool gCrashRecoveryEnabled = false; CrashRecoveryContext::~CrashRecoveryContext() { @@ -59,6 +61,8 @@ CrashRecoveryContext::~CrashRecoveryContext() { // FIXME: No real Win32 implementation currently. void CrashRecoveryContext::Enable() { + sys::ScopedLock L(gCrashRecoveryContexMutex); + if (gCrashRecoveryEnabled) return; @@ -66,6 +70,8 @@ void CrashRecoveryContext::Enable() { } void CrashRecoveryContext::Disable() { + sys::ScopedLock L(gCrashRecoveryContexMutex); + if (!gCrashRecoveryEnabled) return; @@ -121,6 +127,8 @@ static void CrashRecoverySignalHandler(int Signal) { } void CrashRecoveryContext::Enable() { + sys::ScopedLock L(gCrashRecoveryContexMutex); + if (gCrashRecoveryEnabled) return; @@ -138,6 +146,8 @@ void CrashRecoveryContext::Enable() { } void CrashRecoveryContext::Disable() { + sys::ScopedLock L(gCrashRecoveryContexMutex); + if (!gCrashRecoveryEnabled) return;