diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-04-13 11:29:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-04-13 11:29:04 +0000 |
commit | 40489c0fbe644dc4fe3b85a6d434ec7ee0fc3996 (patch) | |
tree | 802260e69b4b8a87ff5adf8e0023b29dcfc83018 /ldso/include/dl-hash.h | |
parent | 08b828bbdb9ae44040b845e927d58d6bd5643c15 (diff) |
Add missing definition for DL_OPENED
Diffstat (limited to 'ldso/include/dl-hash.h')
-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; |