(clk_id: ClockId, vm: &VirtualMachine)
| 1186 | |
| 1187 | #[pyfunction] |
| 1188 | fn clock_gettime(clk_id: ClockId, vm: &VirtualMachine) -> PyResult<f64> { |
| 1189 | get_clock_time(clk_id, vm).map(|d| d.as_secs_f64()) |
| 1190 | } |
| 1191 | |
| 1192 | #[pyfunction] |
| 1193 | fn clock_gettime_ns(clk_id: ClockId, vm: &VirtualMachine) -> PyResult<u128> { |
no test coverage detected