Class: ELFTools::Sections::DynamicSection

Inherits:
Section
  • Object
show all
Includes:
Dynamic
Defined in:
lib/elftools/sections/dynamic_section.rb

Overview

Class for dynamic table section.

This section should always be named .dynamic. This class knows how to get the list of dynamic tags.

Instance Attribute Summary

Attributes inherited from Section

#header, #stream

Instance Method Summary collapse

Methods included from Dynamic

#each_tags, #tag_at, #tag_by_type, #tags, #tags_by_type

Methods inherited from Section

create, #data, #initialize, #name, #null?, #type

Constructor Details

This class inherits a constructor from ELFTools::Sections::Section

Instance Method Details

#tag_startInteger

Get the start address of tags.

Returns:

  • (Integer)

    Start address of tags.


17
18
19
# File 'lib/elftools/sections/dynamic_section.rb', line 17

def tag_start
  header.sh_offset
end