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

Unified Diff: runtime/bin/process.dart

Issue 9293030: Move actual work out of the SIGCHLD signal handler for the dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update stable test binaries Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/process_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process.dart
diff --git a/runtime/bin/process.dart b/runtime/bin/process.dart
index e9aa65c97a46c36cd7529cf93915d2aeeb1dc06c..74b3ff51592389bc8e166122027a5424024c1a15 100644
--- a/runtime/bin/process.dart
+++ b/runtime/bin/process.dart
@@ -8,9 +8,9 @@
*/
interface Process default _Process {
/**
- * Creates a new process object and starts a process running the
- * [executable] with the specified [arguments]. When the process has been
- * successfully started the [startHandler] is called. If the process fails
+ * Creates a new process object and starts a process running the
+ * [executable] with the specified [arguments]. When the process has been
+ * successfully started the [startHandler] is called. If the process fails
* to start the [errorHandler] is called.
*
* An optional [workingDirectory] can be passed to specify where the process
@@ -21,8 +21,8 @@ interface Process default _Process {
* No data can be written to the process stdin and the process cannot be
* closed nor killed before the [startHandler] has been invoked.
*/
- Process.start(String executable,
- List<String> arguments,
+ Process.start(String executable,
+ List<String> arguments,
[String workingDirectory]);
/**
@@ -58,7 +58,7 @@ interface Process default _Process {
void set errorHandler(void callback(ProcessException error));
/**
- * Kills the process. When the process terminates as a result of calling
+ * Kills the process. When the process terminates as a result of calling
* [kill] the [exitHandler] is called. If the kill operation fails, the
* [errorHandler] is called.
*/
« no previous file with comments | « no previous file | runtime/bin/process_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698