()
| 73 | /// [glibc]: https://sourceware.org/glibc/manual/latest/html_node/Creating-a-Pipe.html |
| 74 | #[inline] |
| 75 | pub fn pipe() -> io::Result<(OwnedFd, OwnedFd)> { |
| 76 | backend::pipe::syscalls::pipe() |
| 77 | } |
| 78 | |
| 79 | /// `pipe2(flags)`—Creates a pipe, with flags. |
| 80 | /// |
no outgoing calls