OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/base/criticalsection.h" | 11 #include "webrtc/base/criticalsection.h" |
12 | 12 |
13 #include "webrtc/base/checks.h" | 13 #include "webrtc/base/checks.h" |
14 #include "webrtc/base/platform_thread.h" | 14 #include "webrtc/base/platform_thread.h" |
15 | 15 |
16 // TODO(tommi): Split this file up to per-platform implementation files. | 16 // TODO(tommi): Split this file up to per-platform implementation files. |
17 | 17 |
18 namespace rtc { | 18 namespace rtc { |
19 | 19 |
20 CriticalSection::CriticalSection() { | 20 CriticalSection::CriticalSection() { |
21 #if defined(WEBRTC_WIN) | 21 #if defined(WEBRTC_WIN) |
22 InitializeCriticalSection(&crit_); | 22 InitializeCriticalSection(&crit_); |
23 #else | 23 #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.
| |
24 #if defined(WEBRTC_MAC) && !USE_NATIVE_MUTEX_ON_MAC | 24 #if defined(WEBRTC_MAC) && !USE_NATIVE_MUTEX_ON_MAC |
25 lock_queue_ = 0; | 25 lock_queue_ = 0; |
26 owning_thread_ = 0; | 26 owning_thread_ = 0; |
27 recursion_ = 0; | 27 recursion_ = 0; |
28 semaphore_ = dispatch_semaphore_create(0); | 28 semaphore_ = dispatch_semaphore_create(0); |
29 #else | 29 #else |
30 pthread_mutexattr_t mutex_attribute; | 30 pthread_mutexattr_t mutex_attribute; |
31 pthread_mutexattr_init(&mutex_attribute); | 31 pthread_mutexattr_init(&mutex_attribute); |
32 pthread_mutexattr_settype(&mutex_attribute, PTHREAD_MUTEX_RECURSIVE); | 32 pthread_mutexattr_settype(&mutex_attribute, PTHREAD_MUTEX_RECURSIVE); |
33 pthread_mutex_init(&mutex_, &mutex_attribute); | 33 pthread_mutex_init(&mutex_, &mutex_attribute); |
34 pthread_mutexattr_destroy(&mutex_attribute); | 34 pthread_mutexattr_destroy(&mutex_attribute); |
35 #endif | 35 #endif |
36 CS_DEBUG_CODE(thread_ = 0); | 36 CS_DEBUG_CODE(thread_ = 0); |
37 CS_DEBUG_CODE(recursion_count_ = 0); | 37 CS_DEBUG_CODE(recursion_count_ = 0); |
38 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.
| |
39 RTC_UNUSED(recursion_count_); // Depends on CS_DEBUG_CHECKS. | |
38 #endif | 40 #endif |
39 } | 41 } |
40 | 42 |
41 CriticalSection::~CriticalSection() { | 43 CriticalSection::~CriticalSection() { |
42 #if defined(WEBRTC_WIN) | 44 #if defined(WEBRTC_WIN) |
43 DeleteCriticalSection(&crit_); | 45 DeleteCriticalSection(&crit_); |
44 #else | 46 #else |
45 #if defined(WEBRTC_MAC) && !USE_NATIVE_MUTEX_ON_MAC | 47 #if defined(WEBRTC_MAC) && !USE_NATIVE_MUTEX_ON_MAC |
46 dispatch_release(semaphore_); | 48 dispatch_release(semaphore_); |
47 #else | 49 #else |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
179 #endif // CS_DEBUG_CHECKS | 181 #endif // CS_DEBUG_CHECKS |
180 #endif | 182 #endif |
181 } | 183 } |
182 | 184 |
183 CritScope::CritScope(const CriticalSection* cs) : cs_(cs) { cs_->Enter(); } | 185 CritScope::CritScope(const CriticalSection* cs) : cs_(cs) { cs_->Enter(); } |
184 CritScope::~CritScope() { cs_->Leave(); } | 186 CritScope::~CritScope() { cs_->Leave(); } |
185 | 187 |
186 TryCritScope::TryCritScope(const CriticalSection* cs) | 188 TryCritScope::TryCritScope(const CriticalSection* cs) |
187 : cs_(cs), locked_(cs->TryEnter()) { | 189 : cs_(cs), locked_(cs->TryEnter()) { |
188 CS_DEBUG_CODE(lock_was_called_ = false); | 190 CS_DEBUG_CODE(lock_was_called_ = false); |
191 RTC_UNUSED(lock_was_called_); // Depends on CS_DEBUG_CHECKS. | |
189 } | 192 } |
190 | 193 |
191 TryCritScope::~TryCritScope() { | 194 TryCritScope::~TryCritScope() { |
192 CS_DEBUG_CODE(RTC_DCHECK(lock_was_called_)); | 195 CS_DEBUG_CODE(RTC_DCHECK(lock_was_called_)); |
193 if (locked_) | 196 if (locked_) |
194 cs_->Leave(); | 197 cs_->Leave(); |
195 } | 198 } |
196 | 199 |
197 bool TryCritScope::locked() const { | 200 bool TryCritScope::locked() const { |
198 CS_DEBUG_CODE(lock_was_called_ = true); | 201 CS_DEBUG_CODE(lock_was_called_ = true); |
(...skipping 28 matching lines...) Expand all Loading... | |
227 GlobalLockScope::GlobalLockScope(GlobalLockPod* lock) | 230 GlobalLockScope::GlobalLockScope(GlobalLockPod* lock) |
228 : lock_(lock) { | 231 : lock_(lock) { |
229 lock_->Lock(); | 232 lock_->Lock(); |
230 } | 233 } |
231 | 234 |
232 GlobalLockScope::~GlobalLockScope() { | 235 GlobalLockScope::~GlobalLockScope() { |
233 lock_->Unlock(); | 236 lock_->Unlock(); |
234 } | 237 } |
235 | 238 |
236 } // namespace rtc | 239 } // namespace rtc |
OLD | NEW |