Searched refs:WNOHANG (Results 1 - 5 of 5) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/ |
H A D | wait.h | 65 * 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 D | process-posix.cpp | 85 int rc = waitpid(Process, &iStatus, fFlags & RTPROCWAIT_FLAGS_NOBLOCK ? WNOHANG : 0);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | uxproces.c | 774 * with the WNOHANG option. 866 pid = waitpid((pid_t) 0, &status, WNOHANG); 868 pid = waitpid((pid_t) -1, &status, WNOHANG);
|
H A D | irix.c | 395 while ((pid = waitpid(0, &status, WNOHANG)) > 0) { 1098 if (waitpid(0, NULL, WNOHANG) >= 0)
|
/vbox/src/VBox/ValidationKit/testdriver/ |
H A D | base.py | 612 (uPid, uStatus) = os.waitpid(self.uPid, os.WNOHANG); # pylint: disable=E1101
|
Completed in 2158 milliseconds