remove the symbol-table walking

it wasn't feasible without knowledge of the size which I couldn't find without reading the elf file. Moreover, it wasn't really required and was halting progress
This commit is contained in:
2025-03-23 01:39:34 +02:00
parent 36ca3a2155
commit 564d2490e5
4 changed files with 13 additions and 121 deletions

View File

@@ -15,11 +15,6 @@ typedef struct {
sc_array_def(SymbolInfos, syms);
struct dl_phdr_info;
struct sc_array_memreg;
HiloadResult hi_create_symbol_info(SymbolInfos *,
struct sc_array_memreg *const regions,
struct dl_phdr_info *);
void hi_free_symbol_info(SymbolInfos *);
#endif // SYMBOLS_H_