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 #include "platform/globals.h" | 5 #include "platform/globals.h" |
6 #if defined(TARGET_OS_WINDOWS) | 6 #if defined(TARGET_OS_WINDOWS) |
7 | 7 |
8 #include "bin/file.h" | 8 #include "bin/file.h" |
9 #include "bin/platform.h" | 9 #include "bin/platform.h" |
10 #include "bin/log.h" | 10 #include "bin/log.h" |
11 #include "bin/socket.h" | 11 #include "bin/socket.h" |
12 #include "bin/utils.h" | 12 #include "bin/utils.h" |
13 #include "bin/utils_win.h" | 13 #include "bin/utils_win.h" |
14 | 14 |
15 | 15 |
16 namespace dart { | 16 namespace dart { |
17 | |
18 // Defined in vm/os_thread_win.cc | |
19 extern bool private_flag_windows_run_tls_destructors; | |
20 | |
21 namespace bin { | 17 namespace bin { |
22 | 18 |
23 bool Platform::Initialize() { | 19 bool Platform::Initialize() { |
24 // Nothing to do on Windows. | 20 // Nothing to do on Windows. |
25 return true; | 21 return true; |
26 } | 22 } |
27 | 23 |
28 | 24 |
29 int Platform::NumberOfProcessors() { | 25 int Platform::NumberOfProcessors() { |
30 SYSTEM_INFO info; | 26 SYSTEM_INFO info; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 } | 99 } |
104 char* path = StringUtilsWin::WideToUtf8(tmp_buffer); | 100 char* path = StringUtilsWin::WideToUtf8(tmp_buffer); |
105 free(tmp_buffer); | 101 free(tmp_buffer); |
106 // Return the canonical path as the returned path might contain symlinks. | 102 // Return the canonical path as the returned path might contain symlinks. |
107 char* canon_path = File::GetCanonicalPath(path); | 103 char* canon_path = File::GetCanonicalPath(path); |
108 free(path); | 104 free(path); |
109 return canon_path; | 105 return canon_path; |
110 } | 106 } |
111 | 107 |
112 void Platform::Exit(int exit_code) { | 108 void Platform::Exit(int exit_code) { |
113 ::dart::private_flag_windows_run_tls_destructors = false; | |
114 // On Windows we use ExitProcess so that threads can't clobber the exit_code. | 109 // On Windows we use ExitProcess so that threads can't clobber the exit_code. |
115 // See: https://code.google.com/p/nativeclient/issues/detail?id=2870 | 110 // See: https://code.google.com/p/nativeclient/issues/detail?id=2870 |
116 ::ExitProcess(exit_code); | 111 ::ExitProcess(exit_code); |
117 } | 112 } |
118 | 113 |
119 } // namespace bin | 114 } // namespace bin |
120 } // namespace dart | 115 } // namespace dart |
121 | 116 |
122 #endif // defined(TARGET_OS_WINDOWS) | 117 #endif // defined(TARGET_OS_WINDOWS) |
OLD | NEW |