From 40489c0fbe644dc4fe3b85a6d434ec7ee0fc3996 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 13 Apr 2005 11:29:04 +0000 Subject: Add missing definition for DL_OPENED --- ldso/include/dl-hash.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ldso/include/dl-hash.h') 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; -- cgit v1.2.3