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
This commit is contained in:
Andrew Trick
2011-05-21 00:56:46 +00:00
parent 5c2256a571
commit dc5948d472
6 changed files with 23 additions and 31 deletions

View File

@@ -28,11 +28,10 @@ Program::ExecuteAndWait(const Path& path,
const Path** redirects,
unsigned secondsToWait,
unsigned memoryLimit,
std::string* ErrMsg,
const char* SignalPrefix) {
std::string* ErrMsg) {
Program prg;
if (prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg))
return prg.Wait(path, secondsToWait, ErrMsg, SignalPrefix);
return prg.Wait(path, secondsToWait, ErrMsg);
else
return -1;
}