Browse Source

Add `ElfSection::is_allocated` function

Philipp Oppermann 9 years ago
parent
commit
4d64c4317a
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/elf_sections.rs

+ 4 - 0
src/elf_sections.rs

@@ -65,6 +65,10 @@ impl ElfSection {
     pub fn flags(&self) -> ElfSectionFlags {
         ElfSectionFlags::from_bits_truncate(self.flags)
     }
+
+    pub fn is_allocated(&self) -> bool {
+        self.flags().contains(ELF_SECTION_ALLOCATED)
+    }
 }
 
 #[repr(u32)]