| 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_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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 if (_NSGetExecutablePath(path, &path_size) != 0) { | 113 if (_NSGetExecutablePath(path, &path_size) != 0) { |
| 114 free(path); | 114 free(path); |
| 115 return NULL; | 115 return NULL; |
| 116 } | 116 } |
| 117 // Return the canonical path as the returned path might contain symlinks. | 117 // Return the canonical path as the returned path might contain symlinks. |
| 118 char* canon_path = File::GetCanonicalPath(path); | 118 char* canon_path = File::GetCanonicalPath(path); |
| 119 free(path); | 119 free(path); |
| 120 return canon_path; | 120 return canon_path; |
| 121 } | 121 } |
| 122 | 122 |
| 123 void Platform::Exit(int exit_code) { |
| 124 exit(exit_code); |
| 125 } |
| 126 |
| 123 } // namespace bin | 127 } // namespace bin |
| 124 } // namespace dart | 128 } // namespace dart |
| 125 | 129 |
| 126 #endif // defined(TARGET_OS_MACOS) | 130 #endif // defined(TARGET_OS_MACOS) |
| OLD | NEW |