Sha256: 959d6bd6c7abb85e042f86047fb902891c5deb74c550ce21dac96fb9a9f16d36

Contents?: true

Size: 496 Bytes

Versions: 10

Compression:

Stored size: 496 Bytes

Contents

//! Process parameters.
//!
//! These values correspond to `sysconf` in POSIX, and the auxv array in Linux.
//! Despite the POSIX name “sysconf”, these aren't *system* configuration
//! parameters; they're *process* configuration parameters, as they may differ
//! between different processes on the same system.

#[cfg(feature = "param")]
mod auxv;
#[cfg(target_vendor = "mustang")]
mod init;

#[cfg(feature = "param")]
pub use auxv::*;
#[cfg(target_vendor = "mustang")]
pub use init::init;

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
wasmtime-13.0.0 ./ext/cargo-vendor/rustix-0.37.23/src/param/mod.rs
wasmtime-12.0.1 ./ext/cargo-vendor/rustix-0.37.23/src/param/mod.rs
wasmtime-12.0.0 ./ext/cargo-vendor/rustix-0.37.23/src/param/mod.rs
wasmtime-11.0.0 ./ext/cargo-vendor/rustix-0.37.23/src/param/mod.rs
wasmtime-10.0.1 ./ext/cargo-vendor/rustix-0.37.23/src/param/mod.rs
wasmtime-10.0.0 ./ext/cargo-vendor/rustix-0.37.23/src/param/mod.rs
wasmtime-9.0.4 ./ext/cargo-vendor/rustix-0.37.23/src/param/mod.rs
wasmtime-9.0.1 ./ext/cargo-vendor/rustix-0.37.19/src/param/mod.rs
wasmtime-8.0.0 ./ext/cargo-vendor/rustix-0.37.13/src/param/mod.rs
wasmtime-7.0.0 ./ext/cargo-vendor/rustix-0.37.5/src/param/mod.rs