Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Unified Diff: webrtc/base/criticalsection.cc

Issue 2957753002: No compliation-flag-dependent members in CriticalSection (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« webrtc/base/criticalsection.h ('K') | « webrtc/base/criticalsection.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« webrtc/base/criticalsection.h ('K') | « webrtc/base/criticalsection.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698