Constants

object Constants

Properties

Link copied to clipboard
const val SHT_DYNAMIC: Int

Section holds information for dynamic linking. An object file may have only one dynamic section.

Link copied to clipboard
const val SHT_DYNSYM: Int

Section holds a minimal set of dynamic linking symbols.

Link copied to clipboard
const val SHT_HASH: Int

Section holds a symbol hash table. Required for dynamic linking.

Link copied to clipboard
const val SHT_HIPROC: Int

Upper bound of the range reserved for processor-specific semantics.

Link copied to clipboard
const val SHT_HIUSER: Int

Upper bound of the range of indices reserved for application programs.

Link copied to clipboard
const val SHT_LOPROC: Int

Lower bound of the range reserved for processor-specific semantics.

Link copied to clipboard
const val SHT_LOUSER: Int

Lower bound of the range of indices reserved for application programs.

Link copied to clipboard
const val SHT_NOBITS: Int

Section occupies no space in the file but otherwise resembles SHT_PROGBITS.

Link copied to clipboard
const val SHT_NOTE: Int

Section holds notes (ElfN_Nhdr).

Link copied to clipboard
const val SHT_NULL: Int

Marks the section header as inactive. It does not have an associated section.

Link copied to clipboard
const val SHT_PROGBITS: Int

Section holds information defined by the program, whose format and meaning are determined solely by the program.

Link copied to clipboard
const val SHT_REL: Int

Section holds relocation offsets without explicit addends, such as type Elf32_Rel for the 32-bit class of object files.

Link copied to clipboard
const val SHT_RELA: Int

Section holds relocation entries with explicit addends, such as type Elf32_Rela for the 32-bit class of object files.

Link copied to clipboard
const val SHT_SHLIB: Int

Reserved section with unspecified semantics.

Link copied to clipboard
const val SHT_STRTAB: Int

Section holds a string table. An object file may have multiple string table sections.

Link copied to clipboard
const val SHT_SYMTAB: Int

Section holds a symbol table. Typically provides symbols for link editing, though it may also be used for dynamic linking.