| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 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 #ifndef WEBRTC_RTC_BASE_PLATFORM_THREAD_H_ | 11 #ifndef WEBRTC_RTC_BASE_PLATFORM_THREAD_H_ |
| 12 #define WEBRTC_RTC_BASE_PLATFORM_THREAD_H_ | 12 #define WEBRTC_RTC_BASE_PLATFORM_THREAD_H_ |
| 13 | 13 |
| 14 #include <string> | 14 #include <string> |
| 15 | 15 |
| 16 #include "webrtc/base/constructormagic.h" | 16 #include "webrtc/rtc_base/constructormagic.h" |
| 17 #include "webrtc/base/event.h" | 17 #include "webrtc/rtc_base/event.h" |
| 18 #include "webrtc/base/platform_thread_types.h" | 18 #include "webrtc/rtc_base/platform_thread_types.h" |
| 19 #include "webrtc/base/thread_checker.h" | 19 #include "webrtc/rtc_base/thread_checker.h" |
| 20 | 20 |
| 21 namespace rtc { | 21 namespace rtc { |
| 22 | 22 |
| 23 PlatformThreadId CurrentThreadId(); | 23 PlatformThreadId CurrentThreadId(); |
| 24 PlatformThreadRef CurrentThreadRef(); | 24 PlatformThreadRef CurrentThreadRef(); |
| 25 | 25 |
| 26 // Compares two thread identifiers for equality. | 26 // Compares two thread identifiers for equality. |
| 27 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b); | 27 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b); |
| 28 | 28 |
| 29 // Sets the current thread name. | 29 // Sets the current thread name. |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 // controlling thread and checked on the worker thread. | 115 // controlling thread and checked on the worker thread. |
| 116 volatile int stop_flag_ = 0; | 116 volatile int stop_flag_ = 0; |
| 117 pthread_t thread_ = 0; | 117 pthread_t thread_ = 0; |
| 118 #endif // defined(WEBRTC_WIN) | 118 #endif // defined(WEBRTC_WIN) |
| 119 RTC_DISALLOW_COPY_AND_ASSIGN(PlatformThread); | 119 RTC_DISALLOW_COPY_AND_ASSIGN(PlatformThread); |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 } // namespace rtc | 122 } // namespace rtc |
| 123 | 123 |
| 124 #endif // WEBRTC_RTC_BASE_PLATFORM_THREAD_H_ | 124 #endif // WEBRTC_RTC_BASE_PLATFORM_THREAD_H_ |
| OLD | NEW |