| Index: runtime/bin/process_linux.cc
|
| diff --git a/runtime/bin/process_linux.cc b/runtime/bin/process_linux.cc
|
| index 62b5f63e3147c28e55d491647c16db9fa0b33f5f..fc19034c02859fe72c2f45eda99c828df1328292 100644
|
| --- a/runtime/bin/process_linux.cc
|
| +++ b/runtime/bin/process_linux.cc
|
| @@ -93,10 +93,6 @@ void ExitHandler(int process_signal, siginfo_t* siginfo, void* tmp) {
|
| int negative = 0;
|
| if (WIFEXITED(status)) {
|
| exit_code = WEXITSTATUS(status);
|
| - if (exit_code == 255) {
|
| - exit_code = 1;
|
| - negative = 1;
|
| - }
|
| }
|
| if (WIFSIGNALED(status)) {
|
| exit_code = WTERMSIG(status);
|
|
|