parsing DT_OS_HASHZ, DT_OS_STRTAB , DT_OS_STRSZ for dynamic loader

This commit is contained in:
georgemoralis 2023-06-08 13:25:24 +03:00
parent 672e2b2d77
commit 8932be618b
3 changed files with 16 additions and 0 deletions

View file

@ -19,6 +19,10 @@ struct Module
struct DynamicModuleInfo
{
void* hash_table = nullptr;
u64 hash_table_size = 0;
char* str_table = nullptr;
u64 str_table_size = 0;
};
class Linker