Searched refs:WNOHANG (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dwait.h65 * Option bits for the third argument of wait4. WNOHANG causes the
73 #define WNOHANG 0x00000001 /* don't hang in wait */ macro
/vbox/src/VBox/Runtime/r3/posix/
H A Dprocess-posix.cpp85 int rc = waitpid(Process, &iStatus, fFlags & RTPROCWAIT_FLAGS_NOBLOCK ? WNOHANG : 0);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Duxproces.c774 * with the WNOHANG option.
866 pid = waitpid((pid_t) 0, &status, WNOHANG);
868 pid = waitpid((pid_t) -1, &status, WNOHANG);
H A Dirix.c395 while ((pid = waitpid(0, &status, WNOHANG)) > 0) {
1098 if (waitpid(0, NULL, WNOHANG) >= 0)
/vbox/src/VBox/ValidationKit/testdriver/
H A Dbase.py612 (uPid, uStatus) = os.waitpid(self.uPid, os.WNOHANG); # pylint: disable=E1101

Completed in 54 milliseconds