mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user