Type Alias goblin::elf::SectionHeader

source ·
pub type SectionHeader = SectionHeader;

Aliased Type§

struct SectionHeader {
    pub sh_name: usize,
    pub sh_type: u32,
    pub sh_flags: u64,
    pub sh_addr: u64,
    pub sh_offset: u64,
    pub sh_size: u64,
    pub sh_link: u32,
    pub sh_info: u32,
    pub sh_addralign: u64,
    pub sh_entsize: u64,
}

Fields§

§sh_name: usize

Section name (string tbl index)

§sh_type: u32

Section type

§sh_flags: u64

Section flags

§sh_addr: u64

Section virtual addr at execution

§sh_offset: u64

Section file offset

§sh_size: u64

Section size in bytes

§sh_link: u32

Link to another section

§sh_info: u32

Additional section information

§sh_addralign: u64

Section alignment

§sh_entsize: u64

Entry size if section holds table