Class ElfSymbolTableSection

java.lang.Object
net.fornwall.jelf.ElfSection
net.fornwall.jelf.ElfSymbolTableSection

public class ElfSymbolTableSection extends ElfSection
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 Details

  • Constructor Details

    • ElfSymbolTableSection

      public ElfSymbolTableSection(net.fornwall.jelf.ElfParser parser, ElfSectionHeader header)