Sha256: 2e6a1a1c00351b9c88bd615aa923f71d76208df5626dd9bea03067f28f81dc31
Contents?: true
Size: 481 Bytes
Versions: 23
Compression:
Stored size: 481 Bytes
Contents
// With "use-explicitly-provided-auxv" enabled, we expect to be initialized // with an explicit `rustix::param::init` call. // // With "use-libc-auxv" enabled, use libc's `getauxval`. // // Otherwise, we read aux values from /proc/self/auxv. #[cfg_attr(feature = "use-explicitly-provided-auxv", path = "init.rs")] #[cfg_attr( all( not(feature = "use-explicitly-provided-auxv"), feature = "use-libc-auxv" ), path = "libc_auxv.rs" )] pub(crate) mod auxv;
Version data entries
23 entries across 23 versions & 1 rubygems