Get rid of the printout from the low-level system interface

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15161 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-07-24 07:50:48 +00:00
parent e96b2ed211
commit 21ddf17ff6

View File

@ -182,20 +182,9 @@ int llvm::RunProgramWithTimeout(const std::string &ProgramPath,
alarm(NumSeconds);
int Status;
while (wait(&Status) != Child) {
while (wait(&Status) != Child)
if (errno == EINTR) {
if (Timeout) {
static bool FirstTimeout = true;
if (FirstTimeout) {
std::cout <<
"*** Program execution timed out! This mechanism is designed to handle\n"
" programs stuck in infinite loops gracefully. The -timeout option\n"
" can be used to change the timeout threshold or disable it completely\n"
" (with -timeout=0). This message is only displayed once.\n";
FirstTimeout = false;
}
}
// Kill the child.
kill(Child, SIGKILL);