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

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

Issue 9196002: Move Mutex and Monitor from vm/ to platform/ (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed revire 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
« no previous file with comments | « runtime/platform/thread_macos.cc ('k') | runtime/platform/thread_win.cc » ('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) 2011, 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 VM_THREAD_WIN_H_ 5 #ifndef PLATFORM_THREAD_WIN_H_
6 #define VM_THREAD_WIN_H_ 6 #define PLATFORM_THREAD_WIN_H_
7 7
8 #include "vm/globals.h" 8 #include "platform/globals.h"
9 9
10 namespace dart { 10 namespace dart {
11 11
12 class ThreadData { 12 class ThreadData {
13 private: 13 private:
14 ThreadData() {} 14 ThreadData() {}
15 ~ThreadData() {} 15 ~ThreadData() {}
16 16
17 uintptr_t thread_handle_; 17 uintptr_t thread_handle_;
18 uint32_t tid_; 18 uint32_t tid_;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 CONDITION_VARIABLE cond_; 51 CONDITION_VARIABLE cond_;
52 52
53 friend class Monitor; 53 friend class Monitor;
54 54
55 DISALLOW_ALLOCATION(); 55 DISALLOW_ALLOCATION();
56 DISALLOW_COPY_AND_ASSIGN(MonitorData); 56 DISALLOW_COPY_AND_ASSIGN(MonitorData);
57 }; 57 };
58 58
59 } // namespace dart 59 } // namespace dart
60 60
61 #endif // VM_THREAD_WIN_H_ 61 #endif // PLATFORM_THREAD_WIN_H_
OLDNEW
« no previous file with comments | « runtime/platform/thread_macos.cc ('k') | runtime/platform/thread_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698