Chromium Code Reviews| Index: runtime/bin/process_linux.cc |
| diff --git a/runtime/bin/process_linux.cc b/runtime/bin/process_linux.cc |
| index c8a2f7b51abebbce9ad52c4226cae997575583d4..a47f0c9abbd7ac73648db52d704d3616ccd85bc1 100644 |
| --- a/runtime/bin/process_linux.cc |
| +++ b/runtime/bin/process_linux.cc |
| @@ -165,7 +165,7 @@ class ExitCodeHandler { |
| // Fork to wake up waitpid. |
| if (TEMP_FAILURE_RETRY(fork()) == 0) { |
| - exit(0); |
| + _exit(0); |
|
Vyacheslav Egorov (Google)
2017/01/05 12:43:37
ditto
kustermann
2017/01/05 12:55:34
Done.
|
| } |
| monitor_->Notify(); |