Sha256: c514216b96d9520c9ffc5662c97b24f1f36f56fe1f5f3c9f64175c8b35577288
Contents?: true
Size: 506 Bytes
Versions: 19
Compression:
Stored size: 506 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. mod auxv; #[cfg(all(feature = "use-explicitly-provided-auxv", not(libc)))] mod init; pub use auxv::*; #[cfg(all(feature = "use-explicitly-provided-auxv", not(libc)))] pub use init::init;
Version data entries
19 entries across 19 versions & 1 rubygems