| Index: runtime/bin/process_impl.dart
|
| diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart
|
| index 6dd8b9bb04bebd4d62b3a3646c303b2ef1b9b8ef..f6c0fabf28be0eb7079166532b86f96fb41385cb 100644
|
| --- a/runtime/bin/process_impl.dart
|
| +++ b/runtime/bin/process_impl.dart
|
| @@ -49,6 +49,12 @@ class _Process implements Process {
|
| }
|
| _started = true;
|
|
|
| + // Make sure to activate socket handlers now that the file
|
| + // descriptors have been set.
|
| + _in._activateHandlers();
|
| + _out._activateHandlers();
|
| + _err._activateHandlers();
|
| +
|
| // Setup an exit handler to handle internal cleanup and possible
|
| // callback when a process terminates.
|
| _exitHandler.setDataHandler(() {
|
|
|