Class: ELFTools::Sections::DynamicSection
- 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
Instance Method Summary collapse
-
#tag_start ⇒ Integer
Get the start address of tags.
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_start ⇒ Integer
Get the start address of tags.
17 18 19 |
# File 'lib/elftools/sections/dynamic_section.rb', line 17 def tag_start header.sh_offset end |