(fd: i32, vm: &VirtualMachine)
| 244 | |
| 245 | #[pyfunction] |
| 246 | fn tcdrain(fd: i32, vm: &VirtualMachine) -> PyResult<()> { |
| 247 | termios::tcdrain(fd).map_err(|e| termios_error(e, vm))?; |
| 248 | Ok(()) |
| 249 | } |
| 250 | |
| 251 | #[pyfunction] |
| 252 | fn tcflush(fd: i32, queue: i32, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected