| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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(HOST_OS_FUCHSIA) | 6 #if defined(HOST_OS_FUCHSIA) |
| 7 | 7 |
| 8 #include "bin/platform.h" | 8 #include "bin/platform.h" |
| 9 | 9 |
| 10 #include <string.h> // NOLINT | 10 #include <string.h> // NOLINT |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 return "lib"; | 41 return "lib"; |
| 42 } | 42 } |
| 43 | 43 |
| 44 | 44 |
| 45 const char* Platform::LibraryExtension() { | 45 const char* Platform::LibraryExtension() { |
| 46 return "so"; | 46 return "so"; |
| 47 } | 47 } |
| 48 | 48 |
| 49 | 49 |
| 50 const char* Platform::LocaleName() { | 50 const char* Platform::LocaleName() { |
| 51 return getenv("LANG"); | 51 char* lang = getenv("LANG"); |
| 52 if (lang == NULL) { |
| 53 return "en_US"; |
| 54 } |
| 55 return lang; |
| 52 } | 56 } |
| 53 | 57 |
| 54 | 58 |
| 55 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) { | 59 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) { |
| 56 return gethostname(buffer, buffer_length) == 0; | 60 return gethostname(buffer, buffer_length) == 0; |
| 57 } | 61 } |
| 58 | 62 |
| 59 | 63 |
| 60 char** Platform::Environment(intptr_t* count) { | 64 char** Platform::Environment(intptr_t* count) { |
| 61 // Using environ directly is only safe as long as we do not | 65 // Using environ directly is only safe as long as we do not |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 119 |
| 116 | 120 |
| 117 void Platform::Exit(int exit_code) { | 121 void Platform::Exit(int exit_code) { |
| 118 exit(exit_code); | 122 exit(exit_code); |
| 119 } | 123 } |
| 120 | 124 |
| 121 } // namespace bin | 125 } // namespace bin |
| 122 } // namespace dart | 126 } // namespace dart |
| 123 | 127 |
| 124 #endif // defined(HOST_OS_FUCHSIA) | 128 #endif // defined(HOST_OS_FUCHSIA) |
| OLD | NEW |