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 mod auxv; 9 #[cfg(all(feature = "use-explicitly-provided-auxv", not(libc)))] 10 mod init; 11 12 pub use auxv::*; 13 #[cfg(all(feature = "use-explicitly-provided-auxv", not(libc)))] 14 pub use init::init; 15