Index: src/platform-openbsd.cc |
diff --git a/src/platform-openbsd.cc b/src/platform-openbsd.cc |
index 0d6997190c86b896f64107530ed9462a59225204..b79cb71a50b2c82907b4e3580b0ea2a36b4beaff 100644 |
--- a/src/platform-openbsd.cc |
+++ b/src/platform-openbsd.cc |
@@ -812,7 +812,7 @@ class SignalSender : public Thread { |
} |
static void AddActiveSampler(Sampler* sampler) { |
- ScopedLock lock(mutex_); |
+ ScopedLock lock(mutex_.Pointer()); |
SamplerRegistry::AddActiveSampler(sampler); |
if (instance_ == NULL) { |
// Start a thread that will send SIGPROF signal to VM threads, |
@@ -825,7 +825,7 @@ class SignalSender : public Thread { |
} |
static void RemoveActiveSampler(Sampler* sampler) { |
- ScopedLock lock(mutex_); |
+ ScopedLock lock(mutex_.Pointer()); |
SamplerRegistry::RemoveActiveSampler(sampler); |
if (SamplerRegistry::GetState() == SamplerRegistry::HAS_NO_SAMPLERS) { |
RuntimeProfiler::StopRuntimeProfilerThreadBeforeShutdown(instance_); |
@@ -919,7 +919,7 @@ class SignalSender : public Thread { |
RuntimeProfilerRateLimiter rate_limiter_; |
// Protects the process wide state below. |
- static Mutex* mutex_; |
+ static LazyMutex mutex_; |
static SignalSender* instance_; |
static bool signal_handler_installed_; |
static struct sigaction old_signal_handler_; |
@@ -929,7 +929,7 @@ class SignalSender : public Thread { |
}; |
-Mutex* SignalSender::mutex_ = OS::CreateMutex(); |
+LazyMutex SignalSender::mutex_ = LAZY_MUTEX_INITIALIZER; |
SignalSender* SignalSender::instance_ = NULL; |
struct sigaction SignalSender::old_signal_handler_; |
bool SignalSender::signal_handler_installed_ = false; |