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