| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: You should *NOT* be using this class directly. PlatformThread is | 5 // WARNING: You should *NOT* be using this class directly. PlatformThread is |
| 6 // the low-level platform-specific abstraction to the OS's threading interface. | 6 // the low-level platform-specific abstraction to the OS's threading interface. |
| 7 // You should instead be using a message-loop driven Thread, see thread.h. | 7 // You should instead be using a message-loop driven Thread, see thread.h. |
| 8 | 8 |
| 9 #ifndef BASE_THREADING_PLATFORM_THREAD_H_ | 9 #ifndef BASE_THREADING_PLATFORM_THREAD_H_ |
| 10 #define BASE_THREADING_PLATFORM_THREAD_H_ | 10 #define BASE_THREADING_PLATFORM_THREAD_H_ |
| 11 | 11 |
| 12 #include <stddef.h> |
| 13 |
| 12 #include "base/base_export.h" | 14 #include "base/base_export.h" |
| 13 #include "base/basictypes.h" | 15 #include "base/macros.h" |
| 14 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 15 #include "build/build_config.h" | 17 #include "build/build_config.h" |
| 16 | 18 |
| 17 #if defined(OS_WIN) | 19 #if defined(OS_WIN) |
| 18 #include <windows.h> | 20 #include <windows.h> |
| 19 #elif defined(OS_POSIX) | 21 #elif defined(OS_POSIX) |
| 20 #include <pthread.h> | 22 #include <pthread.h> |
| 21 #include <unistd.h> | 23 #include <unistd.h> |
| 22 #endif | 24 #endif |
| 23 | 25 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 190 |
| 189 static ThreadPriority GetCurrentThreadPriority(); | 191 static ThreadPriority GetCurrentThreadPriority(); |
| 190 | 192 |
| 191 private: | 193 private: |
| 192 DISALLOW_IMPLICIT_CONSTRUCTORS(PlatformThread); | 194 DISALLOW_IMPLICIT_CONSTRUCTORS(PlatformThread); |
| 193 }; | 195 }; |
| 194 | 196 |
| 195 } // namespace base | 197 } // namespace base |
| 196 | 198 |
| 197 #endif // BASE_THREADING_PLATFORM_THREAD_H_ | 199 #endif // BASE_THREADING_PLATFORM_THREAD_H_ |
| OLD | NEW |