| 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/platform.h" |
| 9 |
| 8 #include "bin/file.h" | 10 #include "bin/file.h" |
| 9 #include "bin/log.h" | 11 #include "bin/log.h" |
| 10 #include "bin/platform.h" | |
| 11 #include "bin/socket.h" | 12 #include "bin/socket.h" |
| 12 #include "bin/utils.h" | 13 #include "bin/utils.h" |
| 13 #include "bin/utils_win.h" | 14 #include "bin/utils_win.h" |
| 14 | 15 |
| 15 namespace dart { | 16 namespace dart { |
| 16 | 17 |
| 17 // Defined in vm/os_thread_win.cc | 18 // Defined in vm/os_thread_win.cc |
| 18 extern bool private_flag_windows_run_tls_destructors; | 19 extern bool private_flag_windows_run_tls_destructors; |
| 19 | 20 |
| 20 namespace bin { | 21 namespace bin { |
| 21 | 22 |
| 23 const char* Platform::executable_name_ = NULL; |
| 24 char* Platform::resolved_executable_name_ = NULL; |
| 25 int Platform::script_index_ = 1; |
| 26 char** Platform::argv_ = NULL; |
| 27 |
| 22 bool Platform::Initialize() { | 28 bool Platform::Initialize() { |
| 23 // Nothing to do on Windows. | 29 // Nothing to do on Windows. |
| 24 return true; | 30 return true; |
| 25 } | 31 } |
| 26 | 32 |
| 27 | 33 |
| 28 int Platform::NumberOfProcessors() { | 34 int Platform::NumberOfProcessors() { |
| 29 SYSTEM_INFO info; | 35 SYSTEM_INFO info; |
| 30 GetSystemInfo(&info); | 36 GetSystemInfo(&info); |
| 31 return info.dwNumberOfProcessors; | 37 return info.dwNumberOfProcessors; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 ::dart::private_flag_windows_run_tls_destructors = false; | 119 ::dart::private_flag_windows_run_tls_destructors = false; |
| 114 // On Windows we use ExitProcess so that threads can't clobber the exit_code. | 120 // 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 | 121 // See: https://code.google.com/p/nativeclient/issues/detail?id=2870 |
| 116 ::ExitProcess(exit_code); | 122 ::ExitProcess(exit_code); |
| 117 } | 123 } |
| 118 | 124 |
| 119 } // namespace bin | 125 } // namespace bin |
| 120 } // namespace dart | 126 } // namespace dart |
| 121 | 127 |
| 122 #endif // defined(TARGET_OS_WINDOWS) | 128 #endif // defined(TARGET_OS_WINDOWS) |
| OLD | NEW |