LibC+LibELF: Implement support for the dl_iterate_phdr helper

This helper is used by libgcc_s to figure out where the .eh_frame sections
are located for all loaded shared objects.
This commit is contained in:
Gunnar Beutner 2021-04-16 21:53:43 +02:00 committed by Andreas Kling
commit 6cb28ecee8
Notes: sideshowbarker 2024-07-18 19:28:46 +09:00
20 changed files with 171 additions and 25 deletions

View file

@ -49,8 +49,8 @@
#include <Kernel/VM/AllocationStrategy.h>
#include <Kernel/VM/RangeAllocator.h>
#include <Kernel/VM/Space.h>
#include <LibC/elf.h>
#include <LibC/signal_numbers.h>
#include <LibELF/exec_elf.h>
namespace Kernel {