summaryrefslogtreecommitdiff
path: root/lib/System/Unix
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-10-29 16:39:01 +0000
committerDan Gohman <gohman@apple.com>2010-10-29 16:39:01 +0000
commit695e85d47746f081e6286907f888858462ce4237 (patch)
treeb2635761751edec3f2e1a285ecd25cb8cf189ae4 /lib/System/Unix
parentda54c6dd4f4e54d654722390311bdab502badc3a (diff)
downloadllvm-695e85d47746f081e6286907f888858462ce4237.tar.gz
llvm-695e85d47746f081e6286907f888858462ce4237.tar.bz2
llvm-695e85d47746f081e6286907f888858462ce4237.tar.xz
Make Program::Wait provide an error message string for errors
executing the child process and abnormal child process termination. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117661 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r--lib/System/Unix/Program.inc28
1 files changed, 19 insertions, 9 deletions
diff --git a/lib/System/Unix/Program.inc b/lib/System/Unix/Program.inc
index 110a6d14f4..76012afcba 100644
--- a/lib/System/Unix/Program.inc
+++ b/lib/System/Unix/Program.inc
@@ -350,22 +350,32 @@ Program::Wait(unsigned secondsToWait,
sigaction(SIGALRM, &Old, 0);
}
- // Return the proper exit status. 0=success, >0 is programs' exit status,
- // <0 means a signal was returned, -9999999 means the program dumped core.
+ // Return the proper exit status. Detect error conditions
+ // so we can return -1 for them and set ErrMsg informatively.
int result = 0;
- if (WIFEXITED(status))
+ if (WIFEXITED(status)) {
result = WEXITSTATUS(status);
- else if (WIFSIGNALED(status))
- result = 0 - WTERMSIG(status);
+ if (result == 127) {
+ *ErrMsg = llvm::sys::StrError(ENOENT);
+ return -1;
+ }
+ if (result == 126) {
+ *ErrMsg = "Program could not be executed";
+ return -1;
+ }
+ } else if (WIFSIGNALED(status)) {
+ *ErrMsg = strsignal(WTERMSIG(status));
#ifdef WCOREDUMP
- else if (WCOREDUMP(status))
- result |= 0x01000000;
+ if (WCOREDUMP(status))
+ *ErrMsg += " (core dumped)";
#endif
+ return -1;
+ }
return result;
#else
- return -99;
+ *ErrMsg = "Program::Wait is not implemented on this platform yet!";
+ return -1;
#endif
-
}
bool