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 |
11 // Borrowed from Chromium's src/base/threading/thread_checker.h. | 11 // Borrowed from Chromium's src/base/threading/thread_checker.h. |
12 | 12 |
13 #ifndef WEBRTC_BASE_THREAD_CHECKER_H_ | 13 #ifndef WEBRTC_BASE_THREAD_CHECKER_H_ |
14 #define WEBRTC_BASE_THREAD_CHECKER_H_ | 14 #define WEBRTC_BASE_THREAD_CHECKER_H_ |
15 | 15 |
16 // Apart from debug builds, we also enable the thread checker in | 16 // Apart from debug builds, we also enable the thread checker in |
17 // builds with RTC_DCHECK_IS_ON so that trybots and waterfall bots | 17 // builds with DCHECK_ALWAYS_ON so that trybots and waterfall bots |
18 // with this define will get the same level of thread checking as | 18 // with this define will get the same level of thread checking as |
19 // debug bots. | 19 // debug bots. |
20 #define ENABLE_THREAD_CHECKER RTC_DCHECK_IS_ON | 20 // |
| 21 // Note that this does not perfectly match situations where RTC_DCHECK is |
| 22 // enabled. For example a non-official release build may have |
| 23 // DCHECK_ALWAYS_ON undefined (and therefore ThreadChecker would be |
| 24 // disabled) but have RTC_DCHECKs enabled at runtime. |
| 25 #if (!defined(NDEBUG) || defined(DCHECK_ALWAYS_ON)) |
| 26 #define ENABLE_THREAD_CHECKER 1 |
| 27 #else |
| 28 #define ENABLE_THREAD_CHECKER 0 |
| 29 #endif |
21 | 30 |
22 #include "webrtc/base/checks.h" | 31 #include "webrtc/base/checks.h" |
23 #include "webrtc/base/constructormagic.h" | 32 #include "webrtc/base/constructormagic.h" |
24 #include "webrtc/base/thread_annotations.h" | 33 #include "webrtc/base/thread_annotations.h" |
25 #include "webrtc/base/thread_checker_impl.h" | 34 #include "webrtc/base/thread_checker_impl.h" |
26 | 35 |
27 namespace rtc { | 36 namespace rtc { |
28 | 37 |
29 // Do nothing implementation, for use in release mode. | 38 // Do nothing implementation, for use in release mode. |
30 // | 39 // |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 #define ACCESS_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) | 178 #define ACCESS_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) |
170 | 179 |
171 // Document if a function expected to be called from same thread/task queue. | 180 // Document if a function expected to be called from same thread/task queue. |
172 #define RUN_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(exclusive_locks_required(x)) | 181 #define RUN_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(exclusive_locks_required(x)) |
173 | 182 |
174 #define RTC_DCHECK_RUN_ON(thread_like_object) \ | 183 #define RTC_DCHECK_RUN_ON(thread_like_object) \ |
175 rtc::internal::AnnounceOnThread thread_announcer(thread_like_object); \ | 184 rtc::internal::AnnounceOnThread thread_announcer(thread_like_object); \ |
176 RTC_DCHECK(rtc::internal::AnnounceOnThread::IsCurrent(thread_like_object)) | 185 RTC_DCHECK(rtc::internal::AnnounceOnThread::IsCurrent(thread_like_object)) |
177 | 186 |
178 #endif // WEBRTC_BASE_THREAD_CHECKER_H_ | 187 #endif // WEBRTC_BASE_THREAD_CHECKER_H_ |
OLD | NEW |