Home
last modified time | relevance | path

Searched refs:SecondsToWait (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DProgram.cpp34 unsigned SecondsToWait, unsigned MemoryLimit, in ExecuteAndWait() argument
45 Wait(PI, SecondsToWait, /*WaitUntilTerminates=*/SecondsToWait == 0, in ExecuteAndWait()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DProgram.h122 unsigned SecondsToWait = 0, ///< If non-zero, this specifies the amount
209 unsigned SecondsToWait, ///< If non-zero, this specifies the amount of
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DProgram.inc382 ProcessInfo llvm::sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait,
391 SecondsToWait = 0;
392 } else if (SecondsToWait) {
401 alarm(SecondsToWait);
402 } else if (SecondsToWait == 0)
421 if (SecondsToWait && errno == EINTR) {
448 if (SecondsToWait && !WaitUntilTerminates) {
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DProgram.inc411 ProcessInfo sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait,
420 else if (SecondsToWait > 0)
421 milliSecondsToWait = SecondsToWait * 1000;
428 if (SecondsToWait) {