(fd: Fd)
| 206 | #[cfg(linux_kernel)] |
| 207 | #[inline] |
| 208 | pub fn fcntl_getpipe_size<Fd: AsFd>(fd: Fd) -> io::Result<usize> { |
| 209 | backend::pipe::syscalls::fcntl_getpipe_size(fd.as_fd()) |
| 210 | } |
| 211 | |
| 212 | /// `fnctl(fd, F_SETPIPE_SZ)`—Set the buffer capacity of a pipe. |
| 213 | /// |