(fd: i32, queue: i32, vm: &VirtualMachine)
| 250 | |
| 251 | #[pyfunction] |
| 252 | fn tcflush(fd: i32, queue: i32, vm: &VirtualMachine) -> PyResult<()> { |
| 253 | termios::tcflush(fd, queue).map_err(|e| termios_error(e, vm))?; |
| 254 | Ok(()) |
| 255 | } |
| 256 | |
| 257 | #[pyfunction] |
| 258 | fn tcflow(fd: i32, action: i32, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected