Browse Source

Add missing definition for DL_OPENED

Eric Andersen 20 years ago
parent
commit
40489c0fbe
1 changed files with 5 additions and 4 deletions
  1. 5 4
      ldso/include/dl-hash.h

+ 5 - 4
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;