[][src]Struct kernel::elf::ELFHeader

#[repr(C)]pub struct ELFHeader {
    pub magic: u32,
    pub elf: [u8; 12],
    pub etype: u16,
    pub machine: u16,
    pub version: u32,
    pub entry: u64,
    pub phoff: u64,
    pub shoff: u64,
    pub flags: u32,
    pub ehsize: u16,
    pub phentsize: u16,
    pub phnum: u16,
    pub shentsize: u16,
    pub shnum: u16,
    pub shstrndx: u16,
}

Fields

magic: u32elf: [u8; 12]etype: u16machine: u16version: u32entry: u64phoff: u64shoff: u64flags: u32ehsize: u16phentsize: u16phnum: u16shentsize: u16shnum: u16shstrndx: u16