Home | History | Annotate | Download | only in sys

Lines Matching refs:pipe2

66 	ATF_REQUIRE(pipe2(fd, flags) == 0);
110 atf_tc_set_md_var(tc, "descr", "A basic test of pipe2(2)");
122 "with pipe2(2) does not crash the system (PR kern/46457)");
138 * file descriptor limit in the middle of a pipe2() call - i.e.
146 err = pipe2(filedes, O_CLOEXEC);
155 atf_tc_set_md_var(tc, "descr", "A non-blocking test of pipe2(2)");
166 atf_tc_set_md_var(tc, "descr", "A close-on-exec test of pipe2(2)");
177 atf_tc_set_md_var(tc, "descr", "A close-on-fork test of pipe2(2)");
192 atf_tc_set_md_var(tc, "descr", "A no sigpipe test of pipe2(2)");
203 atf_tc_set_md_var(tc, "descr", "A error check of pipe2(2)");
209 ATF_REQUIRE_ERRNO(EINVAL, pipe2(fd, O_ASYNC) == -1);