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

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

Issue 1417013011: Report iOS as iOS rather than OS X. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: sync Created 5 years, 1 month 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 | « CHANGELOG.md ('k') | runtime/vm/os_macos.cc » ('j') | 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(TARGET_OS_MACOS) 6 #if defined(TARGET_OS_MACOS)
7 7
8 #include <mach-o/dyld.h> 8 #include <mach-o/dyld.h>
9 #include <sys/types.h> 9 #include <sys/types.h>
10 #include <sys/sysctl.h> 10 #include <sys/sysctl.h>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 if (sysctlbyname("hw.logicalcpu", &cpus, &cpus_length, NULL, 0) == 0) { 46 if (sysctlbyname("hw.logicalcpu", &cpus, &cpus_length, NULL, 0) == 0) {
47 return cpus; 47 return cpus;
48 } else { 48 } else {
49 // Failed, fallback to using sysconf. 49 // Failed, fallback to using sysconf.
50 return sysconf(_SC_NPROCESSORS_ONLN); 50 return sysconf(_SC_NPROCESSORS_ONLN);
51 } 51 }
52 } 52 }
53 53
54 54
55 const char* Platform::OperatingSystem() { 55 const char* Platform::OperatingSystem() {
56 #if TARGET_OS_IOS
57 return "ios";
58 #else
56 return "macos"; 59 return "macos";
60 #endif
57 } 61 }
58 62
59 63
60 const char* Platform::LibraryExtension() { 64 const char* Platform::LibraryExtension() {
61 return "dylib"; 65 return "dylib";
62 } 66 }
63 67
64 68
65 bool Platform::LocalHostname(char *buffer, intptr_t buffer_length) { 69 bool Platform::LocalHostname(char *buffer, intptr_t buffer_length) {
66 return gethostname(buffer, buffer_length) == 0; 70 return gethostname(buffer, buffer_length) == 0;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 } 125 }
122 126
123 void Platform::Exit(int exit_code) { 127 void Platform::Exit(int exit_code) {
124 exit(exit_code); 128 exit(exit_code);
125 } 129 }
126 130
127 } // namespace bin 131 } // namespace bin
128 } // namespace dart 132 } // namespace dart
129 133
130 #endif // defined(TARGET_OS_MACOS) 134 #endif // defined(TARGET_OS_MACOS)
OLDNEW
« no previous file with comments | « CHANGELOG.md ('k') | runtime/vm/os_macos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698