| 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 #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 "platform/globals.h" | 9 #include "platform/globals.h" |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 intptr_t* exit_handler, | 24 intptr_t* exit_handler, |
| 25 char* os_error_message, | 25 char* os_error_message, |
| 26 int os_error_message_len); | 26 int os_error_message_len); |
| 27 | 27 |
| 28 // Kill a process with a given pid. | 28 // Kill a process with a given pid. |
| 29 static bool Kill(intptr_t id); | 29 static bool Kill(intptr_t id); |
| 30 | 30 |
| 31 // Indicate that the process with the given pid has exited. | 31 // Indicate that the process with the given pid has exited. |
| 32 static void Exit(intptr_t id); | 32 static void Exit(intptr_t id); |
| 33 | 33 |
| 34 // Terminate the exit code handler thread. Does not return before |
| 35 // the thread has terminated. |
| 36 static void TerminateExitCodeHandler(); |
| 37 |
| 34 DISALLOW_ALLOCATION(); | 38 DISALLOW_ALLOCATION(); |
| 35 DISALLOW_IMPLICIT_CONSTRUCTORS(Process); | 39 DISALLOW_IMPLICIT_CONSTRUCTORS(Process); |
| 36 }; | 40 }; |
| 37 | 41 |
| 38 #endif // BIN_PROCESS_H_ | 42 #endif // BIN_PROCESS_H_ |
| OLD | NEW |