| 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_ANDROID) |   6 #if defined(TARGET_OS_ANDROID) | 
|   7  |   7  | 
|   8 #include "bin/file.h" |   8 #include "bin/file.h" | 
|   9 #include "bin/platform.h" |   9 #include "bin/platform.h" | 
|  10  |  10  | 
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  70  |  70  | 
|  71 void Platform::FreeEnvironment(char** env, intptr_t count) { |  71 void Platform::FreeEnvironment(char** env, intptr_t count) { | 
|  72   delete[] env; |  72   delete[] env; | 
|  73 } |  73 } | 
|  74  |  74  | 
|  75  |  75  | 
|  76 char* Platform::ResolveExecutablePath() { |  76 char* Platform::ResolveExecutablePath() { | 
|  77   return File::LinkTarget("/proc/self/exe"); |  77   return File::LinkTarget("/proc/self/exe"); | 
|  78 } |  78 } | 
|  79  |  79  | 
 |  80 void Platform::Exit(int exit_code) { | 
 |  81   exit(exit_code); | 
 |  82 } | 
 |  83  | 
|  80 }  // namespace bin |  84 }  // namespace bin | 
|  81 }  // namespace dart |  85 }  // namespace dart | 
|  82  |  86  | 
|  83 #endif  // defined(TARGET_OS_ANDROID) |  87 #endif  // defined(TARGET_OS_ANDROID) | 
| OLD | NEW |