1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:37:46 +00:00

LibELF: Rename lookup_elf_symbol() => lookup_sysv_symbol()

We have two kinds of lookup, SYSV and GNU hash. Both are ELF lookups.
This commit is contained in:
Andreas Kling 2021-02-23 18:53:25 +01:00
parent cc00df0f0f
commit 46a94a9a9e
2 changed files with 3 additions and 3 deletions

View file

@ -251,7 +251,7 @@ DynamicObject::RelocationSection DynamicObject::plt_relocation_section() const
return RelocationSection(Section(*this, m_plt_relocation_offset_location, m_size_of_plt_relocation_entry_list, m_size_of_relocation_entry, "DT_JMPREL"));
}
auto DynamicObject::HashSection::lookup_elf_symbol(const StringView& name, u32 hash_value) const -> Optional<Symbol>
auto DynamicObject::HashSection::lookup_sysv_symbol(const StringView& name, u32 hash_value) const -> Optional<Symbol>
{
u32* hash_table_begin = (u32*)address().as_ptr();
size_t num_buckets = hash_table_begin[0];