OLD | NEW |
| (Empty) |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | |
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. | |
4 | |
5 #if defined(DART_IO_DISABLED) | |
6 | |
7 #include "bin/process.h" | |
8 | |
9 #include "bin/builtin.h" | |
10 #include "bin/dartutils.h" | |
11 #include "include/dart_api.h" | |
12 | |
13 namespace dart { | |
14 namespace bin { | |
15 | |
16 int Process::global_exit_code_ = 0; | |
17 Mutex* Process::global_exit_code_mutex_ = new Mutex(); | |
18 Process::ExitHook Process::exit_hook_ = NULL; | |
19 | |
20 void Process::TerminateExitCodeHandler() {} | |
21 | |
22 void Process::ClearAllSignalHandlers() {} | |
23 | |
24 void FUNCTION_NAME(Process_Start)(Dart_NativeArguments args) { | |
25 Dart_ThrowException( | |
26 DartUtils::NewInternalError("Process is not supported on this platform")); | |
27 } | |
28 | |
29 void FUNCTION_NAME(Process_Wait)(Dart_NativeArguments args) { | |
30 Dart_ThrowException( | |
31 DartUtils::NewInternalError("Process is not supported on this platform")); | |
32 } | |
33 | |
34 void FUNCTION_NAME(Process_KillPid)(Dart_NativeArguments args) { | |
35 Dart_ThrowException( | |
36 DartUtils::NewInternalError("Process is not supported on this platform")); | |
37 } | |
38 | |
39 void FUNCTION_NAME(Process_Exit)(Dart_NativeArguments args) { | |
40 Dart_ThrowException( | |
41 DartUtils::NewInternalError("Process is not supported on this platform")); | |
42 } | |
43 | |
44 void FUNCTION_NAME(Process_SetExitCode)(Dart_NativeArguments args) { | |
45 Dart_ThrowException( | |
46 DartUtils::NewInternalError("Process is not supported on this platform")); | |
47 } | |
48 | |
49 void FUNCTION_NAME(Process_GetExitCode)(Dart_NativeArguments args) { | |
50 Dart_ThrowException( | |
51 DartUtils::NewInternalError("Process is not supported on this platform")); | |
52 } | |
53 | |
54 void FUNCTION_NAME(Process_Sleep)(Dart_NativeArguments args) { | |
55 Dart_ThrowException( | |
56 DartUtils::NewInternalError("Process is not supported on this platform")); | |
57 } | |
58 | |
59 void FUNCTION_NAME(Process_Pid)(Dart_NativeArguments args) { | |
60 Dart_ThrowException( | |
61 DartUtils::NewInternalError("Process is not supported on this platform")); | |
62 } | |
63 | |
64 void FUNCTION_NAME(Process_SetSignalHandler)(Dart_NativeArguments args) { | |
65 Dart_ThrowException( | |
66 DartUtils::NewInternalError("Process is not supported on this platform")); | |
67 } | |
68 | |
69 void FUNCTION_NAME(Process_ClearSignalHandler)(Dart_NativeArguments args) { | |
70 Dart_ThrowException( | |
71 DartUtils::NewInternalError("Process is not supported on this platform")); | |
72 } | |
73 | |
74 void FUNCTION_NAME(SystemEncodingToString)(Dart_NativeArguments args) { | |
75 Dart_ThrowException( | |
76 DartUtils::NewInternalError("Process is not supported on this platform")); | |
77 } | |
78 | |
79 void FUNCTION_NAME(StringToSystemEncoding)(Dart_NativeArguments args) { | |
80 Dart_ThrowException( | |
81 DartUtils::NewInternalError("Process is not supported on this platform")); | |
82 } | |
83 | |
84 void FUNCTION_NAME(ProcessInfo_CurrentRSS)(Dart_NativeArguments args) { | |
85 Dart_ThrowException( | |
86 DartUtils::NewInternalError("Process is not supported on this platform")); | |
87 } | |
88 | |
89 void FUNCTION_NAME(ProcessInfo_MaxRSS)(Dart_NativeArguments args) { | |
90 Dart_ThrowException( | |
91 DartUtils::NewInternalError("Process is not supported on this platform")); | |
92 } | |
93 | |
94 } // namespace bin | |
95 } // namespace dart | |
96 | |
97 #endif // !defined(DART_IO_DISABLED) | |
OLD | NEW |