Home
last modified time | relevance | path

Searched refs:WNOHANG (Results 1 – 7 of 7) sorted by relevance

/haiku/src/system/libroot/posix/glibc/include/bits/
H A Dwaitflags.h26 #define WNOHANG 1 /* Don't block waiting. */ macro
/haiku/headers/posix/sys/
H A Dwait.h14 #define WNOHANG 0x01 macro
/haiku/src/system/libroot/posix/sys/
H A Dwait.cpp39 if (child == B_WOULD_BLOCK && (options & WNOHANG) != 0) in _waitpid()
/haiku/src/tests/system/network/
H A Dtcp_server.c27 while (waitpid(-1, NULL, WNOHANG) > 0) { in sigchld_handler()
/haiku/src/system/libroot/posix/
H A Dspawn.cpp526 waitpid(pid, NULL, WNOHANG); in spawn_using_fork()
/haiku/src/system/kernel/
H A Dteam.cpp2580 if (status == B_WOULD_BLOCK && (flags & WNOHANG) == 0) in wait_for_child()
2597 if (status != B_WOULD_BLOCK || (flags & WNOHANG) != 0) { in wait_for_child()
/haiku/src/bin/network/ftpd/
H A Dftpd.c3352 while (waitpid(-1, NULL, WNOHANG) > 0); in reapchild()