| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
4 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
[vm/io] Signal to fork()ed child only in non detached mode
When we start a process in detached mode, we're not interested in it's
exit code. The code that makes the child wait for "go signal" from
parent is only there for the case where we're interested in the exit
code.
=> Avoid doing this for detached processes.
Also: If we launch the detached process without stdin/stdout/stderr
communication channels, we can avoid creating the pipe.
Issue https://github.com/dart-lang/sdk/issues/62781
TEST=Existing test suite
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |