Elf64Shdr
data class Elf64Shdr(val shName: Elf64Word, val shType: ElfSType, val shFlags: ElfSFlags, val shAddr: Elf64Addr, val shOffset: Elf64Off, val shSize: Elf64Xword, val shLink: Elf64Word, val shInfo: Elf64Word, val shAddralign: Elf64Xword, val shEntsize: Elf64Xword, val name: String? = null) : ElfShdr(source)
Represents a section header in a 64-bit ELF file.
The section header table is an array of these structures, with each entry describing a section in the file. The ELF header's e_shoff member gives the byte offset from the beginning of the file to the section header table.
Constructors
Link copied to clipboard
constructor(shName: Elf64Word, shType: ElfSType, shFlags: ElfSFlags, shAddr: Elf64Addr, shOffset: Elf64Off, shSize: Elf64Xword, shLink: Elf64Word, shInfo: Elf64Word, shAddralign: Elf64Xword, shEntsize: Elf64Xword, name: String? = null)