summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Program.h
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2011-05-21 00:56:46 +0000
committerAndrew Trick <atrick@apple.com>2011-05-21 00:56:46 +0000
commitdc5948d47205fd05184a25251e128db6a47b25c2 (patch)
tree79eabc660d9d50197ac5b3182ac793e88b9dbc82 /include/llvm/Support/Program.h
parent5c2256a5719172273eaef198f92d8af924ff8623 (diff)
downloadllvm-dc5948d47205fd05184a25251e128db6a47b25c2.tar.gz
llvm-dc5948d47205fd05184a25251e128db6a47b25c2.tar.bz2
llvm-dc5948d47205fd05184a25251e128db6a47b25c2.tar.xz
Have Program::Wait return -2 for crashed and timeouts instead of embedding
info in the error message. Per Dan's request. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131780 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Program.h')
-rw-r--r--include/llvm/Support/Program.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/include/llvm/Support/Program.h b/include/llvm/Support/Program.h
index 986c53e908..a5026573aa 100644
--- a/include/llvm/Support/Program.h
+++ b/include/llvm/Support/Program.h
@@ -85,8 +85,9 @@ namespace sys {
/// This function waits for the program to exit. This function will block
/// the current program until the invoked program exits.
/// @returns an integer result code indicating the status of the program.
- /// A zero or positive value indicates the result code of the program. A
- /// negative value is the signal number on which it terminated.
+ /// A zero or positive value indicates the result code of the program.
+ /// -1 indicates failure to execute
+ /// -2 indicates a crash during execution or timeout
/// @see Execute
/// @brief Waits for the program to exit.
int Wait
@@ -96,11 +97,9 @@ namespace sys {
///< expires, the child is killed and this call returns. If zero,
///< this function will wait until the child finishes or forever if
///< it doesn't.
- std::string* ErrMsg, ///< If non-zero, provides a pointer to a string
+ std::string* ErrMsg ///< If non-zero, provides a pointer to a string
///< instance in which error messages will be returned. If the string
///< is non-empty upon return an error occurred while waiting.
- const char *SignalPrefix ///< If non-zero, provides a prefix to be
- ///< prepended to ErrMsg if the process is terminated abnormally.
);
/// This function terminates the program.
@@ -139,8 +138,7 @@ namespace sys {
const sys::Path** redirects = 0,
unsigned secondsToWait = 0,
unsigned memoryLimit = 0,
- std::string* ErrMsg = 0,
- const char *SignalPrefix = 0);
+ std::string* ErrMsg = 0);
/// A convenience function equivalent to Program prg; prg.Execute(..);
/// @see Execute