Sha256: db21fc1b0ea5568b8649890fa38a878bfcdcf7398f6cf1640176b37bcc6ce990
Contents?: true
Size: 424 Bytes
Versions: 24
Compression:
Stored size: 424 Bytes
Contents
// On Mustang, origin is in control of program startup and can access the // incoming aux values on the stack. // // With "use-libc-auxv" enabled, use libc's `getauxval`. // // Otherwise, we read aux values from /proc/self/auxv. #[cfg_attr(target_vendor = "mustang", path = "mustang_auxv.rs")] #[cfg_attr( all(not(target_vendor = "mustang"), feature = "use-libc-auxv"), path = "libc_auxv.rs" )] pub(crate) mod auxv;
Version data entries
24 entries across 15 versions & 1 rubygems