| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 #ifndef BIN_PROCESS_H_ | 5 #ifndef BIN_PROCESS_H_ |
| 6 #define BIN_PROCESS_H_ | 6 #define BIN_PROCESS_H_ |
| 7 | 7 |
| 8 #include "bin/builtin.h" | 8 #include "bin/builtin.h" |
| 9 #include "bin/globals.h" | 9 |
| 10 #include "platform/globals.h" |
| 10 | 11 |
| 11 | 12 |
| 12 class Process { | 13 class Process { |
| 13 public: | 14 public: |
| 14 // Start a new process providing access to stdin, stdout, stderr and | 15 // Start a new process providing access to stdin, stdout, stderr and |
| 15 // process exit streams. | 16 // process exit streams. |
| 16 static int Start(const char* path, | 17 static int Start(const char* path, |
| 17 char* arguments[], | 18 char* arguments[], |
| 18 intptr_t arguments_length, | 19 intptr_t arguments_length, |
| 19 const char* working_directory, | 20 const char* working_directory, |
| 20 intptr_t* in, | 21 intptr_t* in, |
| 21 intptr_t* out, | 22 intptr_t* out, |
| 22 intptr_t* err, | 23 intptr_t* err, |
| 23 intptr_t* id, | 24 intptr_t* id, |
| 24 intptr_t* exit_handler, | 25 intptr_t* exit_handler, |
| 25 char* os_error_message, | 26 char* os_error_message, |
| 26 int os_error_message_len); | 27 int os_error_message_len); |
| 27 | 28 |
| 28 // Kill a process with a given pid. | 29 // Kill a process with a given pid. |
| 29 static bool Kill(intptr_t id); | 30 static bool Kill(intptr_t id); |
| 30 | 31 |
| 31 // Indicate that the process with the given pid has exited. | 32 // Indicate that the process with the given pid has exited. |
| 32 static void Exit(intptr_t id); | 33 static void Exit(intptr_t id); |
| 33 | 34 |
| 34 DISALLOW_ALLOCATION(); | 35 DISALLOW_ALLOCATION(); |
| 35 DISALLOW_IMPLICIT_CONSTRUCTORS(Process); | 36 DISALLOW_IMPLICIT_CONSTRUCTORS(Process); |
| 36 }; | 37 }; |
| 37 | 38 |
| 38 #endif // BIN_PROCESS_H_ | 39 #endif // BIN_PROCESS_H_ |
| OLD | NEW |