Sha256: 959d6bd6c7abb85e042f86047fb902891c5deb74c550ce21dac96fb9a9f16d36
Contents?: true
Size: 496 Bytes
Versions: 10
Compression:
Stored size: 496 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. #[cfg(feature = "param")] mod auxv; #[cfg(target_vendor = "mustang")] mod init; #[cfg(feature = "param")] pub use auxv::*; #[cfg(target_vendor = "mustang")] pub use init::init;
Version data entries
10 entries across 10 versions & 1 rubygems