Sha256: c514216b96d9520c9ffc5662c97b24f1f36f56fe1f5f3c9f64175c8b35577288

Contents?: true

Size: 506 Bytes

Versions: 19

Compression:

Stored size: 506 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.

mod auxv;
#[cfg(all(feature = "use-explicitly-provided-auxv", not(libc)))]
mod init;

pub use auxv::*;
#[cfg(all(feature = "use-explicitly-provided-auxv", not(libc)))]
pub use init::init;

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/rustix-0.38.44/src/param/mod.rs
wasmtime-28.0.0 ./ext/cargo-vendor/rustix-0.38.43/src/param/mod.rs
wasmtime-27.0.0 ./ext/cargo-vendor/rustix-0.38.41/src/param/mod.rs
wasmtime-26.0.0 ./ext/cargo-vendor/rustix-0.38.37/src/param/mod.rs
wasmtime-25.0.2 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-25.0.1 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-25.0.0 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-24.0.0 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-23.0.2 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-22.0.0 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-21.0.1 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-20.0.2 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-20.0.0 ./ext/cargo-vendor/rustix-0.38.34/src/param/mod.rs
wasmtime-18.0.3 ./ext/cargo-vendor/rustix-0.38.28/src/param/mod.rs
wasmtime-17.0.1 ./ext/cargo-vendor/rustix-0.38.28/src/param/mod.rs
wasmtime-17.0.0 ./ext/cargo-vendor/rustix-0.38.28/src/param/mod.rs
wasmtime-16.0.0 ./ext/cargo-vendor/rustix-0.38.28/src/param/mod.rs
wasmtime-15.0.1 ./ext/cargo-vendor/rustix-0.38.28/src/param/mod.rs
wasmtime-15.0.0 ./ext/cargo-vendor/rustix-0.38.28/src/param/mod.rs