Index: runtime/bin/process_android.cc |
diff --git a/runtime/bin/process_android.cc b/runtime/bin/process_android.cc |
index 550f680a0861d9894b2557149f7d139ed65119fe..5fe72147b3c33cc188251bae78b4cfd7ed87d887 100644 |
--- a/runtime/bin/process_android.cc |
+++ b/runtime/bin/process_android.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
Please leave a comment here why _exit and not exit
kustermann
2017/01/05 12:55:34
Done.
|
} |
monitor_->Notify(); |