Package net.fornwall.jelf
Class ElfSymbolTableSection
java.lang.Object
net.fornwall.jelf.ElfSection
net.fornwall.jelf.ElfSymbolTableSection
An ELF section with symbol information.
This class represents either of two section types:
ElfSectionHeader.SHT_DYNSYM: For a minimal set of symbols adequate for dynamic linking. Can be stripped and has no runtime cost (is non-allocable). Normally named ".dynsym".ElfSectionHeader.SHT_SYMTAB: A complete symbol table typically used for link editing. Can not be stripped (is allocable). Normally named ".symtab".
-
Field Summary
FieldsFields inherited from class net.fornwall.jelf.ElfSection
header, parser -
Constructor Summary
ConstructorsConstructorDescriptionElfSymbolTableSection(net.fornwall.jelf.ElfParser parser, ElfSectionHeader header) -
Method Summary
Methods inherited from class net.fornwall.jelf.ElfSection
getData
-
Field Details
-
symbols
-
-
Constructor Details
-
ElfSymbolTableSection
-