Home | History | Annotate | Download | only in sys

Lines Matching refs:wait6

52 	    "Test that wait6(2) returns EINVAL with 0 options");
60 ATF_REQUIRE(wait6(P_ALL, 0, &st, 0, &wru, &si) == -1
68 "Test that wait6(2) handled exiting process and code");
86 ATF_REQUIRE(wait6(P_PID, pid, &st, WEXITED, &wru, &si) == pid);
102 "Test that wait6(2) handled terminated process and code");
121 ATF_REQUIRE(wait6(P_PID, pid, &st, WEXITED, &wru, &si) == pid);
137 "Test that wait6(2) handled coredumped process and code");
157 ATF_REQUIRE(wait6(P_PID, pid, &st, WEXITED, &wru, &si) == pid);
174 "Test that wait6(2) handled stopped/continued process and code");
195 ATF_REQUIRE(wait6(P_PID, pid, &st, WSTOPPED, &wru, &si) == pid);
208 ATF_REQUIRE(wait6(P_PID, pid, &st, WCONTINUED, &wru, &si) == pid);
221 ATF_REQUIRE(wait6(P_PID, pid, &st, WEXITED, &wru, &si) == pid);
240 "Test that wait6(2) handled stopped/continued process loop");
265 ATF_REQUIRE(wait6(P_PID, pid, &st, WSTOPPED, &wru, &si) == pid);
276 ATF_REQUIRE(wait6(P_PID, pid, &st, WCONTINUED, &wru, &si) == pid);
287 ATF_REQUIRE(wait6(P_PID, pid, &st, WEXITED, &wru, &si) == pid);