Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Side by Side Diff: runtime/bin/platform_linux.cc

Issue 2843343002: [dart:io] Make Platform.localeName fall back on en_US if LANG is not defined (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/bin/platform_fuchsia.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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(HOST_OS_LINUX) 6 #if defined(HOST_OS_LINUX)
7 7
8 #include "bin/platform.h" 8 #include "bin/platform.h"
9 9
10 #include <signal.h> // NOLINT 10 #include <signal.h> // NOLINT
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 return "lib"; 76 return "lib";
77 } 77 }
78 78
79 79
80 const char* Platform::LibraryExtension() { 80 const char* Platform::LibraryExtension() {
81 return "so"; 81 return "so";
82 } 82 }
83 83
84 84
85 const char* Platform::LocaleName() { 85 const char* Platform::LocaleName() {
86 return getenv("LANG"); 86 char* lang = getenv("LANG");
87 if (lang == NULL) {
88 return "en_US";
89 }
90 return lang;
87 } 91 }
88 92
89 93
90 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) { 94 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) {
91 return gethostname(buffer, buffer_length) == 0; 95 return gethostname(buffer, buffer_length) == 0;
92 } 96 }
93 97
94 98
95 char** Platform::Environment(intptr_t* count) { 99 char** Platform::Environment(intptr_t* count) {
96 // Using environ directly is only safe as long as we do not 100 // Using environ directly is only safe as long as we do not
(...skipping 19 matching lines...) Expand all
116 120
117 121
118 void Platform::Exit(int exit_code) { 122 void Platform::Exit(int exit_code) {
119 exit(exit_code); 123 exit(exit_code);
120 } 124 }
121 125
122 } // namespace bin 126 } // namespace bin
123 } // namespace dart 127 } // namespace dart
124 128
125 #endif // defined(HOST_OS_LINUX) 129 #endif // defined(HOST_OS_LINUX)
OLDNEW
« no previous file with comments | « runtime/bin/platform_fuchsia.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698