(fd: i32, duration: i32, vm: &VirtualMachine)
| 238 | |
| 239 | #[pyfunction] |
| 240 | fn tcsendbreak(fd: i32, duration: i32, vm: &VirtualMachine) -> PyResult<()> { |
| 241 | termios::tcsendbreak(fd, duration).map_err(|e| termios_error(e, vm))?; |
| 242 | Ok(()) |
| 243 | } |
| 244 | |
| 245 | #[pyfunction] |
| 246 | fn tcdrain(fd: i32, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected