diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-01 07:49:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-01 07:49:47 +0000 |
commit | ccdf0cab1d670a05afff42b02c7583ccd23abde9 (patch) | |
tree | 728f8fc2797a2de2b94a0481b3af4c462e65fc7a /elf/dl-support.c | |
parent | 5688da55372193e5941f0240e6ea759d28483970 (diff) | |
download | glibc-ccdf0cab1d670a05afff42b02c7583ccd23abde9.tar glibc-ccdf0cab1d670a05afff42b02c7583ccd23abde9.tar.gz glibc-ccdf0cab1d670a05afff42b02c7583ccd23abde9.tar.bz2 glibc-ccdf0cab1d670a05afff42b02c7583ccd23abde9.zip |
Update.
* elf/dl-minimal.c: Define _itoa for 32-bit machines with HP timing.
* elf/dl-reloc.c: Pretty printing.
* sysdeps/generic/ldsodefs.h: Move _dl_hp_timing_overhead and
procinfo-related variables in rtld_global struct.
* elf/dl-support.c: Likewise.
* elf/rtld.c: Likewise.
* sysdeps/i386/i686/Makefile: Likewise.
* sysdeps/i386/i686/hp-timing.c: Likewise.
* sysdeps/i386/i686/hp-timing.h: Likewise.
* sysdeps/ia64/Makefile: Likewise.
* sysdeps/ia64/hp-timing.c: Likewise.
* sysdeps/sparc/sparc32/sparcv9/Makefile: Likewise.
* sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Likewise.
* sysdeps/unix/sysv/linux/arm/dl-procinfo.c: Likewise.
* sysdeps/unix/sysv/linux/arm/dl-procinfo.h: Likewise.
* sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.c: Likewise.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
* sysdeps/x86_64/Makefile: Likewise.
Diffstat (limited to 'elf/dl-support.c')
-rw-r--r-- | elf/dl-support.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/elf/dl-support.c b/elf/dl-support.c index b78b79d6d9..9a9436e498 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -91,6 +91,9 @@ struct r_scope_elem *_dl_main_searchlist = &_dl_initial_searchlist; /* Nonzero during startup. */ int _dl_starting_up = 1; +/* Get architecture specific initializer. */ +#include <dl-procinfo.c> + /* We expect less than a second for relocation. */ #ifdef HP_SMALL_TIMING_AVAIL # undef HP_TIMING_AVAIL |