Index: webrtc/base/criticalsection.cc |
diff --git a/webrtc/base/criticalsection.cc b/webrtc/base/criticalsection.cc |
index b15bb82ef4fb40da3f96a476fe09fec23e5c1fb2..1756391f92518fa90c092698a2f10698e6e7dd8c 100644 |
--- a/webrtc/base/criticalsection.cc |
+++ b/webrtc/base/criticalsection.cc |
@@ -20,7 +20,7 @@ namespace rtc { |
CriticalSection::CriticalSection() { |
#if defined(WEBRTC_WIN) |
InitializeCriticalSection(&crit_); |
-#else |
+#elif defined(WEBRTC_POSIX) |
eladalon
2017/06/26 12:35:22
mutex_ does not really exist otherwise; would be a
nisse-webrtc
2017/06/26 12:53:09
If you do it this way, also add an
#else
#error
eladalon
2017/06/26 13:38:12
Added throughout the module.
|
#if defined(WEBRTC_MAC) && !USE_NATIVE_MUTEX_ON_MAC |
lock_queue_ = 0; |
owning_thread_ = 0; |
@@ -35,6 +35,8 @@ CriticalSection::CriticalSection() { |
#endif |
CS_DEBUG_CODE(thread_ = 0); |
CS_DEBUG_CODE(recursion_count_ = 0); |
+ RTC_UNUSED(thread_); // Depends on CS_DEBUG_CHECKS. |
nisse-webrtc
2017/06/26 12:53:09
Drop this comment. Instead, add a comment in the h
eladalon
2017/06/26 13:38:12
Done.
|
+ RTC_UNUSED(recursion_count_); // Depends on CS_DEBUG_CHECKS. |
#endif |
} |
@@ -186,6 +188,7 @@ CritScope::~CritScope() { cs_->Leave(); } |
TryCritScope::TryCritScope(const CriticalSection* cs) |
: cs_(cs), locked_(cs->TryEnter()) { |
CS_DEBUG_CODE(lock_was_called_ = false); |
+ RTC_UNUSED(lock_was_called_); // Depends on CS_DEBUG_CHECKS. |
} |
TryCritScope::~TryCritScope() { |