(vm: &VirtualMachine)
| 86 | // TODO: implement proper monotonic time for wasm/wasi. |
| 87 | #[cfg(not(any(unix, windows)))] |
| 88 | fn get_monotonic_time(vm: &VirtualMachine) -> PyResult<Duration> { |
| 89 | duration_since_system_now(vm) |
| 90 | } |
| 91 | |
| 92 | // TODO: implement proper perf time for wasm/wasi. |
| 93 | #[cfg(not(any(unix, windows)))] |
no test coverage detected