Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DProgram.cpp35 unsigned SecondsToWait, unsigned MemoryLimit, in ExecuteAndWait() argument
46 Wait(PI, SecondsToWait, /*WaitUntilTerminates=*/SecondsToWait == 0, in ExecuteAndWait()
/freebsd-13.1/contrib/llvm-project/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
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc381 ProcessInfo llvm::sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait,
390 SecondsToWait = 0;
391 } else if (SecondsToWait) {
400 alarm(SecondsToWait);
401 } else if (SecondsToWait == 0)
420 if (SecondsToWait && errno == EINTR) {
447 if (SecondsToWait && !WaitUntilTerminates) {
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProgram.inc409 ProcessInfo sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait,
418 else if (SecondsToWait > 0)
419 milliSecondsToWait = SecondsToWait * 1000;
426 if (SecondsToWait) {