Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: runtime/bin/thread_pool_linux.h

Issue 9264006: Add additional include guard in platform specific .h files (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/bin/eventhandler_win.h ('k') | runtime/bin/thread_pool_macos.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 BIN_THREAD_POOL_LINUX_H_ 5 #ifndef BIN_THREAD_POOL_LINUX_H_
6 #define BIN_THREAD_POOL_LINUX_H_ 6 #define BIN_THREAD_POOL_LINUX_H_
7 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
8 #include <pthread.h> 12 #include <pthread.h>
9 13
10 #include "platform/globals.h" 14 #include "platform/globals.h"
11 15
12 16
13 class ThreadPoolData { 17 class ThreadPoolData {
14 private: 18 private:
15 ThreadPoolData() {} 19 ThreadPoolData() {}
16 ~ThreadPoolData() {} 20 ~ThreadPoolData() {}
17 21
18 pthread_t* threads() { return threads_; } 22 pthread_t* threads() { return threads_; }
19 void set_threads(pthread_t* threads) { threads_ = threads; } 23 void set_threads(pthread_t* threads) { threads_ = threads; }
20 24
21 pthread_t* threads_; 25 pthread_t* threads_;
22 26
23 friend class ThreadPool; 27 friend class ThreadPool;
24 28
25 DISALLOW_ALLOCATION(); 29 DISALLOW_ALLOCATION();
26 DISALLOW_COPY_AND_ASSIGN(ThreadPoolData); 30 DISALLOW_COPY_AND_ASSIGN(ThreadPoolData);
27 }; 31 };
28 32
29 #endif // BIN_THREAD_POOL_LINUX_H_ 33 #endif // BIN_THREAD_POOL_LINUX_H_
OLDNEW
« no previous file with comments | « runtime/bin/eventhandler_win.h ('k') | runtime/bin/thread_pool_macos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698