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" | 8 #include "bin/platform.h" |
9 | 9 |
10 #include "bin/file.h" | 10 #include "bin/file.h" |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 const char* Platform::LibraryPrefix() { | 48 const char* Platform::LibraryPrefix() { |
49 return ""; | 49 return ""; |
50 } | 50 } |
51 | 51 |
52 | 52 |
53 const char* Platform::LibraryExtension() { | 53 const char* Platform::LibraryExtension() { |
54 return "dll"; | 54 return "dll"; |
55 } | 55 } |
56 | 56 |
57 | 57 |
58 bool Platform::LocalHostname(char *buffer, intptr_t buffer_length) { | 58 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) { |
59 #if defined(DART_IO_DISABLED) || defined(PLATFORM_DISABLE_SOCKET) | 59 #if defined(DART_IO_DISABLED) || defined(PLATFORM_DISABLE_SOCKET) |
60 return false; | 60 return false; |
61 #else | 61 #else |
62 if (!Socket::Initialize()) { | 62 if (!Socket::Initialize()) { |
63 return false; | 63 return false; |
64 } | 64 } |
65 return gethostname(buffer, buffer_length) == 0; | 65 return gethostname(buffer, buffer_length) == 0; |
66 #endif | 66 #endif |
67 } | 67 } |
68 | 68 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 ::dart::private_flag_windows_run_tls_destructors = false; | 126 ::dart::private_flag_windows_run_tls_destructors = false; |
127 // On Windows we use ExitProcess so that threads can't clobber the exit_code. | 127 // On Windows we use ExitProcess so that threads can't clobber the exit_code. |
128 // See: https://code.google.com/p/nativeclient/issues/detail?id=2870 | 128 // See: https://code.google.com/p/nativeclient/issues/detail?id=2870 |
129 ::ExitProcess(exit_code); | 129 ::ExitProcess(exit_code); |
130 } | 130 } |
131 | 131 |
132 } // namespace bin | 132 } // namespace bin |
133 } // namespace dart | 133 } // namespace dart |
134 | 134 |
135 #endif // defined(TARGET_OS_WINDOWS) | 135 #endif // defined(TARGET_OS_WINDOWS) |
OLD | NEW |