| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PLATFORM_THREAD_MACOS_H_ | 5 #ifndef PLATFORM_THREAD_MACOS_H_ |
| 6 #define PLATFORM_THREAD_MACOS_H_ | 6 #define PLATFORM_THREAD_MACOS_H_ |
| 7 | 7 |
| 8 #if !defined(PLATFORM_THREAD_H_) |
| 9 #error Do not include thread_macos.h directly; use thread.h instead. |
| 10 #endif |
| 11 |
| 8 #include <pthread.h> | 12 #include <pthread.h> |
| 9 | 13 |
| 10 #include "platform/globals.h" | 14 #include "platform/globals.h" |
| 11 | 15 |
| 12 namespace dart { | 16 namespace dart { |
| 13 | 17 |
| 14 class ThreadData { | 18 class ThreadData { |
| 15 private: | 19 private: |
| 16 ThreadData() {} | 20 ThreadData() {} |
| 17 ~ThreadData() {} | 21 ~ThreadData() {} |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 60 |
| 57 friend class Monitor; | 61 friend class Monitor; |
| 58 | 62 |
| 59 DISALLOW_ALLOCATION(); | 63 DISALLOW_ALLOCATION(); |
| 60 DISALLOW_COPY_AND_ASSIGN(MonitorData); | 64 DISALLOW_COPY_AND_ASSIGN(MonitorData); |
| 61 }; | 65 }; |
| 62 | 66 |
| 63 } // namespace dart | 67 } // namespace dart |
| 64 | 68 |
| 65 #endif // PLATFORM_THREAD_MACOS_H_ | 69 #endif // PLATFORM_THREAD_MACOS_H_ |
| OLD | NEW |