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

Side by Side Diff: runtime/platform/thread_win.h

Issue 9141005: Change the thread interface in runtime/platform and use it starting all threads (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments from ager@ 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
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 PLATFORM_THREAD_WIN_H_ 5 #ifndef PLATFORM_THREAD_WIN_H_
6 #define PLATFORM_THREAD_WIN_H_ 6 #define PLATFORM_THREAD_WIN_H_
7 7
8 #if !defined(PLATFORM_THREAD_H_) 8 #if !defined(PLATFORM_THREAD_H_)
9 #error Do not include thread_win.h directly; use thread.h instead. 9 #error Do not include thread_win.h directly; use thread.h instead.
10 #endif 10 #endif
11 11
12 #include "platform/globals.h" 12 #include "platform/globals.h"
13 13
14 namespace dart { 14 namespace dart {
15 15
16 class ThreadData { 16 typedef uintptr_t ThreadHandle;
17 private:
18 ThreadData() {}
19 ~ThreadData() {}
20
21 uintptr_t thread_handle_;
22 uint32_t tid_;
23
24 friend class Thread;
25
26 DISALLOW_ALLOCATION();
27 DISALLOW_COPY_AND_ASSIGN(ThreadData);
28 };
29
30 17
31 class MutexData { 18 class MutexData {
32 private: 19 private:
33 MutexData() {} 20 MutexData() {}
34 ~MutexData() {} 21 ~MutexData() {}
35 22
36 HANDLE semaphore_; 23 HANDLE semaphore_;
37 24
38 friend class Mutex; 25 friend class Mutex;
39 26
(...skipping 16 matching lines...) Expand all
56 43
57 friend class Monitor; 44 friend class Monitor;
58 45
59 DISALLOW_ALLOCATION(); 46 DISALLOW_ALLOCATION();
60 DISALLOW_COPY_AND_ASSIGN(MonitorData); 47 DISALLOW_COPY_AND_ASSIGN(MonitorData);
61 }; 48 };
62 49
63 } // namespace dart 50 } // namespace dart
64 51
65 #endif // PLATFORM_THREAD_WIN_H_ 52 #endif // PLATFORM_THREAD_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698