(fd: Fd, pid: Pid)
| 87 | #[inline] |
| 88 | #[doc(alias = "TIOCSPGRP")] |
| 89 | pub fn tcsetpgrp<Fd: AsFd>(fd: Fd, pid: Pid) -> io::Result<()> { |
| 90 | backend::termios::syscalls::tcsetpgrp(fd.as_fd(), pid) |
| 91 | } |
| 92 | |
| 93 | /// `tcsetattr(fd)`—Set terminal attributes. |
| 94 | /// |