blob: c633e767f643ae20088918097548f8d7a40f0f29 [file] [log] [blame]
//! Time-related operations.
mod clock;
#[cfg(any(linux_kernel, target_os = "fuchsia"))]
mod timerfd;
// TODO: Convert WASI'S clock APIs to use handles rather than ambient clock
// identifiers, update `wasi-libc`, and then add support in `rustix`.
pub use clock::*;
#[cfg(any(linux_kernel, target_os = "fuchsia"))]
pub use timerfd::*;