| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #ifndef BIN_THREAD_POOL_LINUX_H_ | |
| 6 #define BIN_THREAD_POOL_LINUX_H_ | |
| 7 | |
| 8 #if !defined(BIN_THREAD_POOL_H_) | |
| 9 #error Do not include thread_pool_linux.h directly; use thread_pool.h instead. | |
| 10 #endif | |
| 11 | |
| 12 #include <pthread.h> | |
| 13 | |
| 14 #include "platform/globals.h" | |
| 15 | |
| 16 | |
| 17 class ThreadPoolData { | |
| 18 private: | |
| 19 ThreadPoolData() {} | |
| 20 ~ThreadPoolData() {} | |
| 21 | |
| 22 pthread_t* threads() { return threads_; } | |
| 23 void set_threads(pthread_t* threads) { threads_ = threads; } | |
| 24 | |
| 25 pthread_t* threads_; | |
| 26 | |
| 27 friend class ThreadPool; | |
| 28 | |
| 29 DISALLOW_ALLOCATION(); | |
| 30 DISALLOW_COPY_AND_ASSIGN(ThreadPoolData); | |
| 31 }; | |
| 32 | |
| 33 #endif // BIN_THREAD_POOL_LINUX_H_ | |
| OLD | NEW |