Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DProgram.cpp35 unsigned SecondsToWait, unsigned MemoryLimit, in ExecuteAndWait() argument
46 PI, SecondsToWait == 0 ? std::nullopt : std::optional(SecondsToWait), in ExecuteAndWait()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DProgram.h123 unsigned SecondsToWait = 0, ///< If non-zero, this specifies the amount
210 std::optional<unsigned> SecondsToWait, ///< If std::nullopt, waits until
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc389 std::optional<unsigned> SecondsToWait,
399 if (!SecondsToWait) {
402 if (*SecondsToWait == 0)
413 alarm(*SecondsToWait);
434 if (SecondsToWait && errno == EINTR && !Polling) {
461 if (SecondsToWait && !WaitUntilTerminates) {
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProgram.inc412 std::optional<unsigned> SecondsToWait,
419 DWORD milliSecondsToWait = SecondsToWait ? *SecondsToWait * 1000 : INFINITE;
426 if (!Polling && *SecondsToWait > 0) {