• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //! Tests for [`rustix::time`].
2 
3 #![cfg(feature = "time")]
4 #![cfg(not(windows))]
5 #![cfg_attr(target_os = "wasi", feature(wasi_ext))]
6 #![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
7 
8 mod dynamic_clocks;
9 #[cfg(not(any(target_os = "redox", target_os = "wasi")))]
10 mod monotonic;
11 #[cfg(any(target_os = "android", target_os = "linux"))]
12 mod timerfd;
13 mod timespec;
14 mod y2038;
15