mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 04:25:13 +00:00
LibELF: Add ELFImage::Symbol::bind()
This commit is contained in:
parent
1f67894bdd
commit
1f34e16ec6
Notes:
sideshowbarker
2024-07-19 11:02:20 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/1f34e16ec64
1 changed files with 1 additions and 0 deletions
|
@ -36,6 +36,7 @@ public:
|
|||
unsigned size() const { return m_sym.st_size; }
|
||||
unsigned index() const { return m_index; }
|
||||
unsigned type() const { return ELF32_ST_TYPE(m_sym.st_info); }
|
||||
unsigned bind() const { return ELF32_ST_BIND(m_sym.st_info); }
|
||||
const Section section() const { return m_image.section(section_index()); }
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Reference in a new issue