MCPcopy Create free account
hub / github.com/axboe/liburing / io_uring_prep_pipe

Function io_uring_prep_pipe

src/include/liburing.h:1688–1693  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1686}
1687
1688IOURINGINLINE 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 */
1696IOURINGINLINE void io_uring_prep_pipe_direct(struct io_uring_sqe *sqe, int *fds,

Callers 2

pipe_testFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected