(clk_id: ClockId, time: Duration, vm: &VirtualMachine)
| 1221 | #[cfg(any(not(target_vendor = "apple"), target_os = "macos"))] |
| 1222 | #[pyfunction] |
| 1223 | fn clock_settime(clk_id: ClockId, time: Duration, vm: &VirtualMachine) -> PyResult<()> { |
| 1224 | set_clock_time(clk_id, time.into(), vm) |
| 1225 | } |
| 1226 | |
| 1227 | #[cfg(not(target_os = "redox"))] |
| 1228 | #[cfg(any(not(target_vendor = "apple"), target_os = "macos"))] |
no test coverage detected