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

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

Issue 11665004: Add exitCode setter to set the exit code returned by the Dart VM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 12 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/io_natives.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 "bin/builtin.h" 5 #include "bin/builtin.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #include "bin/dartutils.h" 10 #include "bin/dartutils.h"
11 #include "include/dart_api.h" 11 #include "include/dart_api.h"
12 #include "platform/assert.h" 12 #include "platform/assert.h"
13 13
14 14
15 // Lists the native functions implementing basic functionality in 15 // Lists the native functions implementing basic functionality in
16 // standalone dart, such as printing, file I/O, and platform information. 16 // standalone dart, such as printing, file I/O, and platform information.
17 // Advanced I/O classes like sockets and process management are implemented 17 // Advanced I/O classes like sockets and process management are implemented
18 // using functions listed in io_natives.cc. 18 // using functions listed in io_natives.cc.
19 #define BUILTIN_NATIVE_LIST(V) \ 19 #define BUILTIN_NATIVE_LIST(V) \
20 V(Directory_Exists, 1) \ 20 V(Directory_Exists, 1) \
21 V(Directory_Create, 1) \ 21 V(Directory_Create, 1) \
22 V(Directory_Current, 0) \ 22 V(Directory_Current, 0) \
23 V(Directory_CreateTemp, 1) \ 23 V(Directory_CreateTemp, 1) \
24 V(Directory_Delete, 2) \ 24 V(Directory_Delete, 2) \
25 V(Directory_Rename, 2) \ 25 V(Directory_Rename, 2) \
26 V(Directory_NewServicePort, 0) \ 26 V(Directory_NewServicePort, 0) \
27 V(Exit, 1) \
28 V(File_Open, 2) \ 27 V(File_Open, 2) \
29 V(File_Exists, 1) \ 28 V(File_Exists, 1) \
30 V(File_Close, 1) \ 29 V(File_Close, 1) \
31 V(File_ReadByte, 1) \ 30 V(File_ReadByte, 1) \
32 V(File_WriteByte, 2) \ 31 V(File_WriteByte, 2) \
33 V(File_Read, 2) \ 32 V(File_Read, 2) \
34 V(File_ReadList, 4) \ 33 V(File_ReadList, 4) \
35 V(File_WriteList, 4) \ 34 V(File_WriteList, 4) \
36 V(File_Position, 1) \ 35 V(File_Position, 1) \
37 V(File_SetPosition, 2) \ 36 V(File_SetPosition, 2) \
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 fputc('\n', out); 96 fputc('\n', out);
98 fflush(out); 97 fflush(out);
99 } 98 }
100 99
101 100
102 void FUNCTION_NAME(Logger_PrintString)(Dart_NativeArguments args) { 101 void FUNCTION_NAME(Logger_PrintString)(Dart_NativeArguments args) {
103 Dart_EnterScope(); 102 Dart_EnterScope();
104 Builtin::PrintString(stdout, Dart_GetNativeArgument(args, 0)); 103 Builtin::PrintString(stdout, Dart_GetNativeArgument(args, 0));
105 Dart_ExitScope(); 104 Dart_ExitScope();
106 } 105 }
107
108
109 void FUNCTION_NAME(Exit)(Dart_NativeArguments args) {
110 Dart_EnterScope();
111 int64_t status = 0;
112 // Ignore result if passing invalid argument and just exit 0.
113 DartUtils::GetInt64Value(Dart_GetNativeArgument(args, 0), &status);
114 Dart_ExitScope();
115 exit(static_cast<int>(status));
116 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698