Index: llvm/include/llvm/Support/Program.h =================================================================== --- llvm/include/llvm/Support/Program.h +++ llvm/include/llvm/Support/Program.h @@ -205,13 +205,13 @@ /// \note Users of this function should always check the ReturnCode member of /// the \see ProcessInfo returned from this function. ProcessInfo Wait( - const ProcessInfo &PI, ///< The child process that should be waited on. - unsigned SecondsToWait, ///< If non-zero, this specifies the amount of - ///< time to wait for the child process to exit. If the time expires, the - ///< child is killed and this function returns. If zero, this function - ///< will perform a non-blocking wait on the child process. - bool WaitUntilTerminates, ///< If true, ignores \p SecondsToWait and waits - ///< until child has terminated. + const ProcessInfo &PI, ///< The child process that should be waited on. + Optional SecondsToWait, ///< If None, waits until child has + ///< terminated. + ///< If a value, this specifies the amount of time to wait for the child + ///< process to exit. If the time expires, the child is killed and this + ///< function returns. If zero, this function will perform a non-blocking + ///< wait on the child process. std::string *ErrMsg = nullptr, ///< 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 invoking the Index: llvm/lib/Support/Program.cpp =================================================================== --- llvm/lib/Support/Program.cpp +++ llvm/lib/Support/Program.cpp @@ -42,8 +42,8 @@ if (ExecutionFailed) *ExecutionFailed = false; ProcessInfo Result = - Wait(PI, SecondsToWait, /*WaitUntilTerminates=*/SecondsToWait == 0, - ErrMsg, ProcStat); + Wait(PI, SecondsToWait == 0 ? None : Optional(SecondsToWait), ErrMsg, + ProcStat); return Result.ReturnCode; } Index: llvm/lib/Support/Unix/Program.inc =================================================================== --- llvm/lib/Support/Unix/Program.inc +++ llvm/lib/Support/Unix/Program.inc @@ -384,17 +384,18 @@ } #endif -ProcessInfo llvm::sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait, - bool WaitUntilTerminates, std::string *ErrMsg, +ProcessInfo llvm::sys::Wait(const ProcessInfo &PI, Optional SecondsToWait, + std::string *ErrMsg, Optional *ProcStat) { struct sigaction Act, Old; assert(PI.Pid && "invalid pid to wait on, process not started?"); int WaitPidOptions = 0; pid_t ChildPid = PI.Pid; - if (WaitUntilTerminates) { - SecondsToWait = 0; - } else if (SecondsToWait) { + bool WaitUntilTerminates = false; + if (!SecondsToWait) { + WaitUntilTerminates = true; + } else if (*SecondsToWait != 0) { // Install a timeout handler. The handler itself does nothing, but the // simple fact of having a handler at all causes the wait below to return // with EINTR, unlike if we used SIG_IGN. @@ -403,8 +404,9 @@ sigemptyset(&Act.sa_mask); sigaction(SIGALRM, &Act, &Old); // FIXME The alarm signal may be delivered to another thread. - alarm(SecondsToWait); - } else if (SecondsToWait == 0) + + alarm(*SecondsToWait); + } else WaitPidOptions = WNOHANG; // Parent process: Wait for the child process to terminate. Index: llvm/lib/Support/Windows/Program.inc =================================================================== --- llvm/lib/Support/Windows/Program.inc +++ llvm/lib/Support/Windows/Program.inc @@ -408,17 +408,16 @@ return std::wstring(CommandUtf16.begin(), CommandUtf16.end()); } -ProcessInfo sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait, - bool WaitUntilChildTerminates, std::string *ErrMsg, - Optional *ProcStat) { +ProcessInfo sys::Wait(const ProcessInfo &PI, Optional SecondsToWait, + std::string *ErrMsg, Optional *ProcStat) { assert(PI.Pid && "invalid pid to wait on, process not started?"); assert((PI.Process && PI.Process != INVALID_HANDLE_VALUE) && "invalid process handle to wait on, process not started?"); DWORD milliSecondsToWait = 0; - if (WaitUntilChildTerminates) + if (!SecondsToWait) milliSecondsToWait = INFINITE; - else if (SecondsToWait > 0) - milliSecondsToWait = SecondsToWait * 1000; + else if (SecondsToWait) + milliSecondsToWait = *SecondsToWait * 1000; ProcessInfo WaitResult = PI; if (ProcStat) Index: llvm/unittests/Support/ProgramTest.cpp =================================================================== --- llvm/unittests/Support/ProgramTest.cpp +++ llvm/unittests/Support/ProgramTest.cpp @@ -227,11 +227,12 @@ unsigned LoopCount = 0; - // Test that Wait() with WaitUntilTerminates=true works. In this case, - // LoopCount should only be incremented once. + // Test that Wait() with SecondsToWait=None works. In this case, LoopCount + // should only be incremented once. while (true) { ++LoopCount; - ProcessInfo WaitResult = llvm::sys::Wait(PI1, 0, true, &Error); + ProcessInfo WaitResult = + llvm::sys::Wait(PI1, /*SecondsToWait*/ None, &Error); ASSERT_TRUE(Error.empty()); if (WaitResult.Pid == PI1.Pid) break; @@ -239,16 +240,17 @@ EXPECT_EQ(LoopCount, 1u) << "LoopCount should be 1"; - ProcessInfo PI2 = ExecuteNoWait(Executable, argv, getEnviron(), {}, 0, &Error, + ProcessInfo PI2 = ExecuteNoWait(Executable, argv, getEnviron(), + /*Redirects*/ {}, /*MemoryLimit*/ 0, &Error, &ExecutionFailed); ASSERT_FALSE(ExecutionFailed) << Error; ASSERT_NE(PI2.Pid, ProcessInfo::InvalidPid) << "Invalid process id"; // Test that Wait() with SecondsToWait=0 performs a non-blocking wait. In this - // cse, LoopCount should be greater than 1 (more than one increment occurs). + // case, LoopCount should be greater than 1 (more than one increment occurs). while (true) { ++LoopCount; - ProcessInfo WaitResult = llvm::sys::Wait(PI2, 0, false, &Error); + ProcessInfo WaitResult = llvm::sys::Wait(PI2, /*SecondsToWait*/ 0, &Error); ASSERT_TRUE(Error.empty()); if (WaitResult.Pid == PI2.Pid) break; @@ -276,8 +278,8 @@ std::string Error; bool ExecutionFailed; int RetCode = - ExecuteAndWait(Executable, argv, getEnviron(), {}, /*secondsToWait=*/1, 0, - &Error, &ExecutionFailed); + ExecuteAndWait(Executable, argv, getEnviron(), {}, /*secondsToWait=*/1, + /*MemoryLimit*/ 0, &Error, &ExecutionFailed); ASSERT_EQ(-2, RetCode); } @@ -422,7 +424,7 @@ std::this_thread::sleep_for(std::chrono::milliseconds(100)); ASSERT_NO_ERROR(fs::unlockFile(FD1)); - ProcessInfo WaitResult = llvm::sys::Wait(PI2, 5 /* seconds */, true, &Error); + ProcessInfo WaitResult = llvm::sys::Wait(PI2, 5 /* seconds */, &Error); ASSERT_TRUE(Error.empty()); ASSERT_EQ(0, WaitResult.ReturnCode); ASSERT_EQ(WaitResult.Pid, PI2.Pid);