Symbol: pdwait
lib/libc/sys/pdwait.c
19
return (INTERPOS_SYS(pdwait, fd, status, options, ru, infop));
lib/libsys/interposing_table.c
75
SLOT(pdwait, __sys_pdwait),
lib/libthr/thread/thr_syscalls.c
702
SLOT(pdwait);
sys/sys/procdesc.h
132
int pdwait(int, int *, int, struct __wrusage *, struct __siginfo *);
tests/sys/kern/pdwait.c
106
ATF_REQUIRE_ERRNO(EBADF, pdwait(99999, NULL, WEXITED, NULL, NULL) < 0);
tests/sys/kern/pdwait.c
123
pdwait(fdp, (int*)unmapped(), WEXITED, NULL, NULL) < 0);
tests/sys/kern/pdwait.c
142
pdwait(fdp, NULL, WEXITED, (struct __wrusage*)unmapped(), NULL) < 0
tests/sys/kern/pdwait.c
162
pdwait(fdp, NULL, WEXITED, NULL, (struct __siginfo*)unmapped()) < 0
tests/sys/kern/pdwait.c
181
ATF_CHECK_ERRNO(EINVAL, pdwait(fdp, NULL, 0, NULL, NULL) < 0);
tests/sys/kern/pdwait.c
182
ATF_CHECK_ERRNO(EINVAL, pdwait(fdp, NULL, -1, NULL, NULL) < 0);
tests/sys/kern/pdwait.c
184
pdwait(STDERR_FILENO, NULL, WEXITED, NULL, NULL) < 0);
tests/sys/kern/pdwait.c
213
pdwait(fdp, &status, WEXITED, NULL, NULL) < 0);
tests/sys/kern/pdwait.c
235
r = pdwait(fdp, &status, WEXITED, NULL, NULL);
tests/sys/kern/pdwait.c
266
ATF_REQUIRE_ERRNO(ESRCH, pdwait(fdp, NULL, WEXITED, NULL, NULL) < 0);
tests/sys/kern/pdwait.c
285
r = pdwait(fdp, &status, WEXITED, NULL, NULL);
tests/sys/kern/pdwait.c
289
ATF_REQUIRE_ERRNO(ESRCH, pdwait(fdp, NULL, WEXITED, NULL, NULL) < 0);
tests/sys/kern/pdwait.c
69
r = pdwait(fdp, &status, WEXITED, &ru, &si);
tests/sys/kern/pdwait.c
95
r = pdwait(fdp, &status, WEXITED, NULL, NULL);
tools/regression/capsicum/syscalls/cap_fcntls_limit.c
460
CHECK(pdwait(pfd) == 0);
tools/regression/capsicum/syscalls/cap_fcntls_limit.c
478
CHECK(pdwait(pfd) == 0);
tools/regression/capsicum/syscalls/cap_getmode.c
157
if (pdwait(pfd) == -1)
tools/regression/capsicum/syscalls/cap_getmode.c
98
if (pdwait(pfd) == -1)
tools/regression/capsicum/syscalls/cap_ioctls_limit.c
377
if (pdwait(pfd) == -1)
tools/regression/capsicum/syscalls/cap_ioctls_limit.c
396
if (pdwait(pfd) == -1)
tools/regression/capsicum/syscalls/misc.h
54
int pdwait(int pfd);
usr.bin/diff/pr.c
115
while (pdwait(pr->procd, &wstatus, WEXITED, NULL, NULL) == -1) {
usr.bin/diff3/diff3.c
943
while (pdwait(pd, &status, WEXITED, NULL, NULL) == -1) {