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

Side by Side Diff: runtime/bin/process.h

Issue 10545134: Give Process.kill an optional argument to specify which signal to send. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
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 #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 10 matching lines...) Expand all
21 intptr_t environment_length, 21 intptr_t environment_length,
22 intptr_t* in, 22 intptr_t* in,
23 intptr_t* out, 23 intptr_t* out,
24 intptr_t* err, 24 intptr_t* err,
25 intptr_t* id, 25 intptr_t* id,
26 intptr_t* exit_handler, 26 intptr_t* exit_handler,
27 char* os_error_message, 27 char* os_error_message,
28 int os_error_message_len); 28 int os_error_message_len);
29 29
30 // Kill a process with a given pid. 30 // Kill a process with a given pid.
31 static bool Kill(intptr_t id); 31 static bool Kill(intptr_t id, int signal);
32 32
33 // Terminate the exit code handler thread. Does not return before 33 // Terminate the exit code handler thread. Does not return before
34 // the thread has terminated. 34 // the thread has terminated.
35 static void TerminateExitCodeHandler(); 35 static void TerminateExitCodeHandler();
36 36
37 DISALLOW_ALLOCATION(); 37 DISALLOW_ALLOCATION();
38 DISALLOW_IMPLICIT_CONSTRUCTORS(Process); 38 DISALLOW_IMPLICIT_CONSTRUCTORS(Process);
39 }; 39 };
40 40
41 #endif // BIN_PROCESS_H_ 41 #endif // BIN_PROCESS_H_
OLDNEW
« no previous file with comments | « runtime/bin/builtin_natives.cc ('k') | runtime/bin/process.cc » ('j') | runtime/bin/process.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698