structstd.c.solaris.AT_SUN[src]

Extensions to the ELF auxiliary vector.

Values

ConstantUID[src]

effective user id

Source Code

Source code
pub const UID = 2000

ConstantRUID[src]

real user id

Source Code

Source code
pub const RUID = 2001

ConstantGID[src]

effective group id

Source Code

Source code
pub const GID = 2002

ConstantRGID[src]

real group id

Source Code

Source code
pub const RGID = 2003

ConstantLDELF[src]

dynamic linker's ELF header

Source Code

Source code
pub const LDELF = 2004

ConstantLDSHDR[src]

dynamic linker's section headers

Source Code

Source code
pub const LDSHDR = 2005

ConstantLDNAME[src]

name of dynamic linker

Source Code

Source code
pub const LDNAME = 2006

ConstantLPAGESZ[src]

large pagesize

Source Code

Source code
pub const LPAGESZ = 2007

ConstantPLATFORM[src]

platform name

Source Code

Source code
pub const PLATFORM = 2008

ConstantHWCAP[src]

hints about hardware capabilities.

Source Code

Source code
pub const HWCAP = 2009

ConstantHWCAP2[src]

Source Code

Source code
pub const HWCAP2 = 2023

ConstantIFLUSH[src]

flush icache?

Source Code

Source code
pub const IFLUSH = 2010

ConstantCPU[src]

cpu name

Source Code

Source code
pub const CPU = 2011

ConstantEXECNAME[src]

exec() path name in the auxv, null terminated.

Source Code

Source code
pub const EXECNAME = 2014

ConstantMMU[src]

mmu module name

Source Code

Source code
pub const MMU = 2015

ConstantLDDATA[src]

dynamic linkers data segment

Source Code

Source code
pub const LDDATA = 2016

ConstantAUXFLAGS[src]

AF_SUN_ flags passed from the kernel

Source Code

Source code
pub const AUXFLAGS = 2017

ConstantEMULATOR[src]

name of the emulation binary for the linker

Source Code

Source code
pub const EMULATOR = 2018

ConstantBRANDNAME[src]

name of the brand library for the linker

Source Code

Source code
pub const BRANDNAME = 2019

ConstantBRAND_AUX1[src]

vectors for brand modules.

Source Code

Source code
pub const BRAND_AUX1 = 2020

ConstantBRAND_AUX2[src]

Source Code

Source code
pub const BRAND_AUX2 = 2021

ConstantBRAND_AUX3[src]

Source Code

Source code
pub const BRAND_AUX3 = 2022

ConstantBRAND_AUX4[src]

Source Code

Source code
pub const BRAND_AUX4 = 2025

ConstantBRAND_NROOT[src]

Source Code

Source code
pub const BRAND_NROOT = 2024

ConstantCOMMPAGE[src]

vector for comm page.

Source Code

Source code
pub const COMMPAGE = 2026

ConstantFPTYPE[src]

information about the x86 FPU.

Source Code

Source code
pub const FPTYPE = 2027

ConstantFPSIZE[src]

Source Code

Source code
pub const FPSIZE = 2028

Source Code

Source code
pub const AT_SUN = struct {
    /// effective user id
    pub const UID = 2000;
    /// real user id
    pub const RUID = 2001;
    /// effective group id
    pub const GID = 2002;
    /// real group id
    pub const RGID = 2003;
    /// dynamic linker's ELF header
    pub const LDELF = 2004;
    /// dynamic linker's section headers
    pub const LDSHDR = 2005;
    /// name of dynamic linker
    pub const LDNAME = 2006;
    /// large pagesize
    pub const LPAGESZ = 2007;
    /// platform name
    pub const PLATFORM = 2008;
    /// hints about hardware capabilities.
    pub const HWCAP = 2009;
    pub const HWCAP2 = 2023;
    /// flush icache?
    pub const IFLUSH = 2010;
    /// cpu name
    pub const CPU = 2011;
    /// exec() path name in the auxv, null terminated.
    pub const EXECNAME = 2014;
    /// mmu module name
    pub const MMU = 2015;
    /// dynamic linkers data segment
    pub const LDDATA = 2016;
    /// AF_SUN_ flags passed from the kernel
    pub const AUXFLAGS = 2017;
    /// name of the emulation binary for the linker
    pub const EMULATOR = 2018;
    /// name of the brand library for the linker
    pub const BRANDNAME = 2019;
    /// vectors for brand modules.
    pub const BRAND_AUX1 = 2020;
    pub const BRAND_AUX2 = 2021;
    pub const BRAND_AUX3 = 2022;
    pub const BRAND_AUX4 = 2025;
    pub const BRAND_NROOT = 2024;
    /// vector for comm page.
    pub const COMMPAGE = 2026;
    /// information about the x86 FPU.
    pub const FPTYPE = 2027;
    pub const FPSIZE = 2028;
}