[uClibc-cvs] svn commit: trunk/uClibc/ldso/include

andersen at uclibc.org andersen at uclibc.org
Wed Apr 13 11:29:05 UTC 2005


Author: andersen
Date: 2005-04-13 05:29:04 -0600 (Wed, 13 Apr 2005)
New Revision: 10095

Log:
Add missing definition for DL_OPENED


Modified:
   trunk/uClibc/ldso/include/dl-hash.h


Changeset:
Modified: trunk/uClibc/ldso/include/dl-hash.h
===================================================================
--- trunk/uClibc/ldso/include/dl-hash.h	2005-04-13 11:03:28 UTC (rev 10094)
+++ trunk/uClibc/ldso/include/dl-hash.h	2005-04-13 11:29:04 UTC (rev 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;




More information about the uClibc-cvs mailing list