| 1686 | } |
| 1687 | |
| 1688 | IOURINGINLINE void io_uring_prep_pipe(struct io_uring_sqe *sqe, int *fds, |
| 1689 | int pipe_flags) |
| 1690 | { |
| 1691 | io_uring_prep_rw(IORING_OP_PIPE, sqe, 0, fds, 0, 0); |
| 1692 | sqe->pipe_flags = (__u32) pipe_flags; |
| 1693 | } |
| 1694 | |
| 1695 | /* setup pipe directly into the fixed file table */ |
| 1696 | IOURINGINLINE void io_uring_prep_pipe_direct(struct io_uring_sqe *sqe, int *fds, |
no outgoing calls
no test coverage detected