structstd.c.solaris.AF_SUN[src]

ELF auxiliary vector flags.

Values

ConstantSETUGID[src]

tell ld.so.1 to run "secure" and ignore the environment.

Source Code

Source code
pub const SETUGID = 0x00000001

ConstantHWCAPVERIFY[src]

hardware capabilities can be verified against AT_SUN_HWCAP

Source Code

Source code
pub const HWCAPVERIFY = 0x00000002

ConstantNOPLM[src]

Source Code

Source code
pub const NOPLM = 0x00000004

Source Code

Source code
pub const AF_SUN = struct {
    /// tell ld.so.1 to run "secure" and ignore the environment.
    pub const SETUGID = 0x00000001;
    /// hardware capabilities can be verified against AT_SUN_HWCAP
    pub const HWCAPVERIFY = 0x00000002;
    pub const NOPLM = 0x00000004;
}