(fd: Fd)
| 148 | /// [glibc]: https://sourceware.org/glibc/manual/latest/html_node/Allocation.html#index-unlockpt |
| 149 | #[inline] |
| 150 | pub fn unlockpt<Fd: AsFd>(fd: Fd) -> io::Result<()> { |
| 151 | backend::pty::syscalls::unlockpt(fd.as_fd()) |
| 152 | } |
| 153 | |
| 154 | /// `grantpt(fd)`—Grant access to the user side of a pseudoterminal. |
| 155 | /// |