@@ -112,17 +112,16 @@ use crate::sys::{FromInner, IntoInner, time};
112112/// |-----------|----------------------------------------------------------------------|
113113/// | SGX | [`insecure_time` usercall]. More information on [timekeeping in SGX] |
114114/// | UNIX | [clock_gettime] with `CLOCK_MONOTONIC` |
115+ /// | WASI | [clock_gettime] with `CLOCK_MONOTONIC` |
115116/// | Darwin | [clock_gettime] with `CLOCK_UPTIME_RAW` |
116117/// | VXWorks | [clock_gettime] with `CLOCK_MONOTONIC` |
117118/// | SOLID | `get_tim` |
118- /// | WASI | [__wasi_clock_time_get] with `monotonic` |
119119/// | Windows | [QueryPerformanceCounter] |
120120///
121121/// [currently]: crate::io#platform-specific-behavior
122122/// [QueryPerformanceCounter]: https://docs.microsoft.com/en-us/windows/win32/api/profileapi/nf-profileapi-queryperformancecounter
123123/// [`insecure_time` usercall]: https://edp.fortanix.com/docs/api/fortanix_sgx_abi/struct.Usercalls.html#method.insecure_time
124124/// [timekeeping in SGX]: https://edp.fortanix.com/docs/concepts/rust-std/#codestdtimecode
125- /// [__wasi_clock_time_get]: https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md#clock_time_get
126125/// [clock_gettime]: https://pubs.opengroup.org/onlinepubs/9799919799/functions/clock_getres.html
127126///
128127/// **Disclaimer:** These system calls might change over time.
@@ -224,17 +223,16 @@ pub struct Instant(time::Instant);
224223/// |-----------|----------------------------------------------------------------------|
225224/// | SGX | [`insecure_time` usercall]. More information on [timekeeping in SGX] |
226225/// | UNIX | [clock_gettime (Realtime Clock)] |
226+ /// | WASI | [clock_gettime (Realtime Clock)] |
227227/// | Darwin | [clock_gettime (Realtime Clock)] |
228228/// | VXWorks | [clock_gettime (Realtime Clock)] |
229229/// | SOLID | `SOLID_RTC_ReadTime` |
230- /// | WASI | [__wasi_clock_time_get (Realtime Clock)] |
231230/// | Windows | [GetSystemTimePreciseAsFileTime] / [GetSystemTimeAsFileTime] |
232231///
233232/// [currently]: crate::io#platform-specific-behavior
234233/// [`insecure_time` usercall]: https://edp.fortanix.com/docs/api/fortanix_sgx_abi/struct.Usercalls.html#method.insecure_time
235234/// [timekeeping in SGX]: https://edp.fortanix.com/docs/concepts/rust-std/#codestdtimecode
236235/// [clock_gettime (Realtime Clock)]: https://pubs.opengroup.org/onlinepubs/9799919799/functions/clock_getres.html
237- /// [__wasi_clock_time_get (Realtime Clock)]: https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md#clock_time_get
238236/// [GetSystemTimePreciseAsFileTime]: https://docs.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getsystemtimepreciseasfiletime
239237/// [GetSystemTimeAsFileTime]: https://docs.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getsystemtimeasfiletime
240238///
0 commit comments