rustix/param/mod.rs
1//! Process parameters.
2//!
3//! These values correspond to `sysconf` in POSIX, and the auxv array in Linux.
4//! Despite the POSIX name “sysconf”, these aren't *system* configuration
5//! parameters; they're *process* configuration parameters, as they may differ
6//! between different processes on the same system.
7
8mod auxv;
9#[cfg(all(feature = "use-explicitly-provided-auxv", not(libc)))]
10mod init;
11
12pub use auxv::*;
13#[cfg(all(feature = "use-explicitly-provided-auxv", not(libc)))]
14pub use init::init;