| 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_RTC_BASE_THREAD_CHECKER_H_ |
| 14 #define WEBRTC_BASE_THREAD_CHECKER_H_ | 14 #define WEBRTC_RTC_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 RTC_DCHECK_IS_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 #define ENABLE_THREAD_CHECKER RTC_DCHECK_IS_ON |
| 21 | 21 |
| 22 #include "webrtc/base/checks.h" | 22 #include "webrtc/base/checks.h" |
| 23 #include "webrtc/base/constructormagic.h" | 23 #include "webrtc/base/constructormagic.h" |
| 24 #include "webrtc/base/thread_annotations.h" | 24 #include "webrtc/base/thread_annotations.h" |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 // same thread/task queue. | 168 // same thread/task queue. |
| 169 #define ACCESS_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) | 169 #define ACCESS_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) |
| 170 | 170 |
| 171 // 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. |
| 172 #define RUN_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(exclusive_locks_required(x)) | 172 #define RUN_ON(x) THREAD_ANNOTATION_ATTRIBUTE__(exclusive_locks_required(x)) |
| 173 | 173 |
| 174 #define RTC_DCHECK_RUN_ON(thread_like_object) \ | 174 #define RTC_DCHECK_RUN_ON(thread_like_object) \ |
| 175 rtc::internal::AnnounceOnThread thread_announcer(thread_like_object); \ | 175 rtc::internal::AnnounceOnThread thread_announcer(thread_like_object); \ |
| 176 RTC_DCHECK(rtc::internal::AnnounceOnThread::IsCurrent(thread_like_object)) | 176 RTC_DCHECK(rtc::internal::AnnounceOnThread::IsCurrent(thread_like_object)) |
| 177 | 177 |
| 178 #endif // WEBRTC_BASE_THREAD_CHECKER_H_ | 178 #endif // WEBRTC_RTC_BASE_THREAD_CHECKER_H_ |
| OLD | NEW |