Sha256: b8b7c5d2bdba60a69e8a557ce7017e4251a41f5633aec928da059c49bc080cfa

Contents?: true

Size: 447 Bytes

Versions: 3

Compression:

Stored size: 447 Bytes

Contents

//! Time-related operations.

mod clock;
#[cfg(any(target_os = "android", target_os = "fuchsia", target_os = "linux"))]
#[cfg(feature = "time")]
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(target_os = "android", target_os = "fuchsia", target_os = "linux"))]
#[cfg(feature = "time")]
pub use timerfd::*;

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wasmtime-9.0.1 ./ext/cargo-vendor/rustix-0.37.19/src/time/mod.rs
wasmtime-8.0.0 ./ext/cargo-vendor/rustix-0.37.13/src/time/mod.rs
wasmtime-7.0.0 ./ext/cargo-vendor/rustix-0.37.5/src/time/mod.rs