Home | History | Annotate | Download | only in sys

Lines Matching refs:waitid

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);