summaryrefslogtreecommitdiff
path: root/elf/link.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-07-24 22:17:17 +0000
committerUlrich Drepper <drepper@redhat.com>1999-07-24 22:17:17 +0000
commite28bacf5785e4c1b3f7c6fc219163dbec9b8addb (patch)
tree1a599f39a680d70f9a13ffbaba4897ac4175d668 /elf/link.h
parentfcf70d4114db9ff7923f5dfeb3fea6e2d623e5c2 (diff)
Update.
* elf/Makefile (dl-routines): Add preinit. * elf/Versions [ld.so] (GLIBC_2.2): Export _dl_preinit_next. * elf/link.h (struct link_map): Add new field l_preinitcount. * elf/dl-preinit.c: New file. * elf/dynamic-link.h: Initialize l_preinitcount. * sysdeps/i386/dl-machine.h (RTLD_START): Call pre-init functions.
Diffstat (limited to 'elf/link.h')
-rw-r--r--elf/link.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/elf/link.h b/elf/link.h
index cda739df99..d3a54fc011 100644
--- a/elf/link.h
+++ b/elf/link.h
@@ -211,6 +211,10 @@ struct link_map
/* Collected information about own RUNPATH directories. */
struct r_search_path_elem **l_runpath_dirs;
+
+ /* Number of pre-constructors. We compute this during loading to avoid
+ duplication of this during the possibly many calls to _dl_init_next. */
+ unsigned int l_preinitcount;
};
#endif /* link.h */