You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a time value doesn't need to be sent to another host, saved to the db or otherwise used across
program restarts, a monotonically nondecreasing clock should be used. So, switch to using `Instant`
in such places, but as `Instant` may use `libc::clock_gettime(CLOCK_MONOTONIC)`, e.g. on Android,
and does not advance while being in deep sleep mode, make it an alias of `SystemTime` for now. When
the issue on Android will be solved, we can switch to the true `Instant` easily.
0 commit comments