(flags: PipeFlags)
| 108 | #[inline] |
| 109 | #[doc(alias = "pipe2")] |
| 110 | pub fn pipe_with(flags: PipeFlags) -> io::Result<(OwnedFd, OwnedFd)> { |
| 111 | backend::pipe::syscalls::pipe_with(flags) |
| 112 | } |
| 113 | |
| 114 | /// `splice(fd_in, off_in, fd_out, off_out, len, flags)`—Transfer data |
| 115 | /// between a file and a pipe. |
no outgoing calls