Home | History | Annotate | Download | only in fcntl

Lines Matching refs:pipe_fds

69 static int file_fd, pipe_fds[2], fifo_fd;
78 {pipe_fds, "pipe (write end)"},
79 {pipe_fds+1, "pipe (read end)"},
171 SAFE_PIPE(cleanup, pipe_fds);
181 if (pipe_fds[0] > 0 && close(pipe_fds[0]))
182 tst_resm(TWARN | TERRNO, "close(pipe_fds[0]) failed");
184 if (pipe_fds[1] > 0 && close(pipe_fds[1]))
185 tst_resm(TWARN | TERRNO, "close(pipe_fds[1]) failed");