diff options
-rw-r--r-- | ldso/include/dl-hash.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ldso/include/dl-hash.h b/ldso/include/dl-hash.h index 53e17302a..dcad7bcee 100644 --- a/ldso/include/dl-hash.h +++ b/ldso/include/dl-hash.h @@ -56,10 +56,11 @@ struct elf_resolve{ #endif }; -#define RELOCS_DONE 1 -#define JMP_RELOCS_DONE 2 -#define INIT_FUNCS_CALLED 4 -#define FINI_FUNCS_CALLED 8 +#define RELOCS_DONE 0x000001 +#define JMP_RELOCS_DONE 0x000002 +#define INIT_FUNCS_CALLED 0x000004 +#define FINI_FUNCS_CALLED 0x000008 +#define DL_OPENED 0x000010 extern struct dyn_elf * _dl_symbol_tables; extern struct elf_resolve * _dl_loaded_modules; |