(clk_id: ClockId, vm: &VirtualMachine)
| 1191 | |
| 1192 | #[pyfunction] |
| 1193 | fn clock_gettime_ns(clk_id: ClockId, vm: &VirtualMachine) -> PyResult<u128> { |
| 1194 | get_clock_time(clk_id, vm).map(|d| d.as_nanos()) |
| 1195 | } |
| 1196 | |
| 1197 | #[cfg(not(target_os = "redox"))] |
| 1198 | #[pyfunction] |
nothing calls this directly
no test coverage detected