]> git.proxmox.com Git - rustc.git/blame - vendor/rustix-0.37.22/src/param/mod.rs
New upstream version 1.73.0+dfsg1
[rustc.git] / vendor / rustix-0.37.22 / src / param / mod.rs
CommitLineData
fe692bf9
FG
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
8#[cfg(feature = "param")]
9mod auxv;
10#[cfg(target_vendor = "mustang")]
11mod init;
12
13#[cfg(feature = "param")]
14pub use auxv::*;
15#[cfg(target_vendor = "mustang")]
16pub use init::init;