| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 // RTC_DCHECK(thread_checker_.CalledOnValidThread()); | 64 // RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
| 65 // ... (do stuff) ... | 65 // ... (do stuff) ... |
| 66 // } | 66 // } |
| 67 // | 67 // |
| 68 // private: | 68 // private: |
| 69 // ThreadChecker thread_checker_; | 69 // ThreadChecker thread_checker_; |
| 70 // } | 70 // } |
| 71 // | 71 // |
| 72 // In Release mode, CalledOnValidThread will always return true. | 72 // In Release mode, CalledOnValidThread will always return true. |
| 73 #if ENABLE_THREAD_CHECKER | 73 #if ENABLE_THREAD_CHECKER |
| 74 class RTC_LOCKABLE ThreadChecker : public ThreadCheckerImpl {}; | 74 class LOCKABLE ThreadChecker : public ThreadCheckerImpl { |
| 75 }; |
| 75 #else | 76 #else |
| 76 class RTC_LOCKABLE ThreadChecker : public ThreadCheckerDoNothing {}; | 77 class LOCKABLE ThreadChecker : public ThreadCheckerDoNothing { |
| 78 }; |
| 77 #endif // ENABLE_THREAD_CHECKER | 79 #endif // ENABLE_THREAD_CHECKER |
| 78 | 80 |
| 79 #undef ENABLE_THREAD_CHECKER | 81 #undef ENABLE_THREAD_CHECKER |
| 80 | 82 |
| 81 namespace internal { | 83 namespace internal { |
| 82 class RTC_SCOPED_LOCKABLE AnnounceOnThread { | 84 class SCOPED_LOCKABLE AnnounceOnThread { |
| 83 public: | 85 public: |
| 84 template <typename ThreadLikeObject> | 86 template<typename ThreadLikeObject> |
| 85 explicit AnnounceOnThread(const ThreadLikeObject* thread_like_object) | 87 explicit AnnounceOnThread(const ThreadLikeObject* thread_like_object) |
| 86 RTC_EXCLUSIVE_LOCK_FUNCTION(thread_like_object) {} | 88 EXCLUSIVE_LOCK_FUNCTION(thread_like_object) {} |
| 87 ~AnnounceOnThread() RTC_UNLOCK_FUNCTION() {} | 89 ~AnnounceOnThread() UNLOCK_FUNCTION() {} |
| 88 | 90 |
| 89 template<typename ThreadLikeObject> | 91 template<typename ThreadLikeObject> |
| 90 static bool IsCurrent(const ThreadLikeObject* thread_like_object) { | 92 static bool IsCurrent(const ThreadLikeObject* thread_like_object) { |
| 91 return thread_like_object->IsCurrent(); | 93 return thread_like_object->IsCurrent(); |
| 92 } | 94 } |
| 93 static bool IsCurrent(const rtc::ThreadChecker* checker) { | 95 static bool IsCurrent(const rtc::ThreadChecker* checker) { |
| 94 return checker->CalledOnValidThread(); | 96 return checker->CalledOnValidThread(); |
| 95 } | 97 } |
| 96 | 98 |
| 97 private: | 99 private: |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 // rtc::scoped_ref_ptr<Encoder> encoder = encoder_; | 159 // rtc::scoped_ref_ptr<Encoder> encoder = encoder_; |
| 158 // encoder_->Queue()->PostTask([encoder] { encoder->Encode(); }); | 160 // encoder_->Queue()->PostTask([encoder] { encoder->Encode(); }); |
| 159 // } | 161 // } |
| 160 // | 162 // |
| 161 // private: | 163 // private: |
| 162 // rtc::scoped_ref_ptr<Encoder> encoder_; | 164 // rtc::scoped_ref_ptr<Encoder> encoder_; |
| 163 // } | 165 // } |
| 164 | 166 |
| 165 // Document if a variable/field is not shared and should be accessed from | 167 // Document if a variable/field is not shared and should be accessed from |
| 166 // same thread/task queue. | 168 // same thread/task queue. |
| 167 #define ACCESS_ON(x) RTC_THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) | 169 #define ACCESS_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) |
| 168 | 170 |
| 169 // Document if a function expected to be called from same thread/task queue. | 171 // Document if a function expected to be called from same thread/task queue. |
| 170 #define RUN_ON(x) RTC_THREAD_ANNOTATION_ATTRIBUTE__(exclusive_locks_required(x)) | 172 #define RUN_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(exclusive_locks_required(x)) |
| 171 | 173 |
| 172 #define RTC_DCHECK_RUN_ON(thread_like_object) \ | 174 #define RTC_DCHECK_RUN_ON(thread_like_object) \ |
| 173 rtc::internal::AnnounceOnThread thread_announcer(thread_like_object); \ | 175 rtc::internal::AnnounceOnThread thread_announcer(thread_like_object); \ |
| 174 RTC_DCHECK(rtc::internal::AnnounceOnThread::IsCurrent(thread_like_object)) | 176 RTC_DCHECK(rtc::internal::AnnounceOnThread::IsCurrent(thread_like_object)) |
| 175 | 177 |
| 176 #endif // WEBRTC_RTC_BASE_THREAD_CHECKER_H_ | 178 #endif // WEBRTC_RTC_BASE_THREAD_CHECKER_H_ |
| OLD | NEW |