| 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 29 matching lines...) Expand all Loading... |
| 40 const char* Platform::LibraryPrefix() { | 40 const char* Platform::LibraryPrefix() { |
| 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() { | |
| 51 return getenv("LANG"); | |
| 52 } | |
| 53 | |
| 54 | |
| 55 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) { | 50 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) { |
| 56 return gethostname(buffer, buffer_length) == 0; | 51 return gethostname(buffer, buffer_length) == 0; |
| 57 } | 52 } |
| 58 | 53 |
| 59 | 54 |
| 60 char** Platform::Environment(intptr_t* count) { | 55 char** Platform::Environment(intptr_t* count) { |
| 61 // Using environ directly is only safe as long as we do not | 56 // Using environ directly is only safe as long as we do not |
| 62 // provide access to modifying environment variables. | 57 // provide access to modifying environment variables. |
| 63 intptr_t i = 0; | 58 intptr_t i = 0; |
| 64 char** tmp = environ; | 59 char** tmp = environ; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 110 |
| 116 | 111 |
| 117 void Platform::Exit(int exit_code) { | 112 void Platform::Exit(int exit_code) { |
| 118 exit(exit_code); | 113 exit(exit_code); |
| 119 } | 114 } |
| 120 | 115 |
| 121 } // namespace bin | 116 } // namespace bin |
| 122 } // namespace dart | 117 } // namespace dart |
| 123 | 118 |
| 124 #endif // defined(HOST_OS_FUCHSIA) | 119 #endif // defined(HOST_OS_FUCHSIA) |
| OLD | NEW |