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_BASE_PLATFORM_THREAD_H_ | 11 #ifndef WEBRTC_BASE_PLATFORM_THREAD_H_ |
12 #define WEBRTC_BASE_PLATFORM_THREAD_H_ | 12 #define WEBRTC_BASE_PLATFORM_THREAD_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 | 15 |
16 #include "webrtc/base/constructormagic.h" | 16 #include "webrtc/base/constructormagic.h" |
17 #include "webrtc/base/event.h" | 17 #include "webrtc/base/event.h" |
18 #include "webrtc/base/platform_thread_types.h" | 18 #include "webrtc/base/platform_thread_types.h" |
19 #include "webrtc/base/scoped_ptr.h" | |
20 #include "webrtc/base/thread_checker.h" | 19 #include "webrtc/base/thread_checker.h" |
21 | 20 |
22 namespace rtc { | 21 namespace rtc { |
23 | 22 |
24 PlatformThreadId CurrentThreadId(); | 23 PlatformThreadId CurrentThreadId(); |
25 PlatformThreadRef CurrentThreadRef(); | 24 PlatformThreadRef CurrentThreadRef(); |
26 | 25 |
27 // Compares two thread identifiers for equality. | 26 // Compares two thread identifiers for equality. |
28 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b); | 27 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b); |
29 | 28 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 rtc::Event stop_event_; | 103 rtc::Event stop_event_; |
105 | 104 |
106 pthread_t thread_; | 105 pthread_t thread_; |
107 #endif // defined(WEBRTC_WIN) | 106 #endif // defined(WEBRTC_WIN) |
108 RTC_DISALLOW_COPY_AND_ASSIGN(PlatformThread); | 107 RTC_DISALLOW_COPY_AND_ASSIGN(PlatformThread); |
109 }; | 108 }; |
110 | 109 |
111 } // namespace rtc | 110 } // namespace rtc |
112 | 111 |
113 #endif // WEBRTC_BASE_PLATFORM_THREAD_H_ | 112 #endif // WEBRTC_BASE_PLATFORM_THREAD_H_ |
OLD | NEW |