HomeSort by: relevance | last modified time | path
    Searched refs:waitid (Results 1 - 8 of 8) sorted by relevancy

  /src/lib/libc/gen/
waitid.c 1 /* $NetBSD: waitid.c,v 1.4 2016/04/06 04:09:10 christos Exp $ */
32 __RCSID("$NetBSD: waitid.c,v 1.4 2016/04/06 04:09:10 christos Exp $");
44 __weak_alias(waitid,_waitid)
48 waitid(idtype_t idtype, id_t id, siginfo_t *info, int flags)
Makefile.inc 39 utmpx.c valloc.c vis.c wait.c wait3.c waitid.c waitpid.c warn.c \
  /src/tests/lib/libc/sys/
t_wait_noproc.c 71 ATF_TC(waitid);
72 ATF_TC_HEAD(waitid, tc)
75 "Test that waitid(2) returns ECHILD for P_ALL and option %s",
79 ATF_TC_BODY(waitid, tc)
82 waitid(P_ALL, 0, NULL,
138 * waitid(2) must specify at least one of WEXITED, WUNTRACED,
241 "Test that waitid(2) returns ECHILD for P_ALL and valid "
252 printf("Testing waitid(2) with options %x\n", o);
255 waitid(P_ALL, 0, NULL, o | TWAIT_OPTION) == -1);
328 ATF_TP_ADD_TC(tp, waitid);
    [all...]
t_ptrace_wait.h 78 # define TWAIT_FNAME "waitid"
80 waitid(P_PID,(a),NULL,(c)|WEXITED|WTRAPPED)
81 # define TWAIT_WAIT6TYPE(a,b,c,d,e,f) waitid((a),(b),(f),(d))
113 * - TWAIT_WAIT6TYPE() (waitid, wait6)
118 * - TWAIT_HAVE_PID (wait2, waitpid, waitid, wait4, wait6)
287 * If waitid(2) returns because one or more processes have a state change to
  /src/sys/sys/
wait.h 97 * waitid/wait6.
205 int waitid(idtype_t, id_t, siginfo_t *, int);
  /src/lib/libc/include/
namespace.h 805 #define waitid _waitid macro
  /src/tests/lib/libpthread/
t_cancellation.c 854 RL(waitid(P_ALL, 0, NULL, 0));
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_interceptors.inc 2372 // According to sys/wait.h, wait(), waitid(), waitpid() may have symbol version
2388 INTERCEPTOR_WITH_SUFFIX(int, waitid, int idtype, long long id, void *infop,
2391 INTERCEPTOR_WITH_SUFFIX(int, waitid, int idtype, int id, void *infop,
2395 COMMON_INTERCEPTOR_ENTER(ctx, waitid, idtype, id, infop, options);
2399 int res = REAL(waitid)(idtype, id, infop, options);
2461 COMMON_INTERCEPT_FUNCTION(waitid); \

Completed in 24 milliseconds