<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> ------------------------------------------------------------------------
r10095 | andersen | 2005-04-13 06:29:04 -0500 (Wed, 13 Apr 2005) | 2 lines
Changed paths:
   M /trunk/uClibc/ldso/include/dl-hash.h

Add missing definition for DL_OPENED

 ------------------------------------------------------------------------
Index: ldso/include/dl-hash.h
===================================================================
--- ldso/include/dl-hash.h	(revision 10094)
+++ ldso/include/dl-hash.h	(revision 10095)
@@ -56,10 +56,11 @@
 #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;
</pre></body></html>