diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-07 11:36:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-07 11:36:07 +0000 |
commit | 8222199266b283514206a99247f8e3d3b63e2037 (patch) | |
tree | 2ba16e8cdd9f73cd977715c3277326f1220e58f0 /elf/rtld.c | |
parent | ea0034f3bf8e5e3733f8193e708db83452cf15c0 (diff) | |
download | glibc-8222199266b283514206a99247f8e3d3b63e2037.tar glibc-8222199266b283514206a99247f8e3d3b63e2037.tar.gz glibc-8222199266b283514206a99247f8e3d3b63e2037.tar.bz2 glibc-8222199266b283514206a99247f8e3d3b63e2037.zip |
Update.
2005-01-07 Ulrich Drepper <drepper@redhat.com>
* elf/rtld.c [!DONT_USE_BOOTSTRAP_MAP] (_dl_start_final): Initialize
l_relocated of rtld map.
* sysdeps/powerpc/powerpc64/dl-trampoline.S: New file.
* sysdeps/powerpc/powerpc64/dl-machine.h: Remove trampoline code here.
Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
* sysdeps/generic/ldsodefs.h (struct audif_ifaces): Add ppc64 variants.
* elf/tst-auditmod1.c: Add ppc64 support.
* sysdeps/powerpc/powerpc64/bits/link.h: New file.
Diffstat (limited to 'elf/rtld.c')
-rw-r--r-- | elf/rtld.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index 1d08c932f2..c9ed64a7a8 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -263,6 +263,7 @@ _dl_start_final (void *arg, struct dl_start_final_info *info) memcpy (GL(dl_rtld_map).l_info, info->l.l_info, sizeof GL(dl_rtld_map).l_info); GL(dl_rtld_map).l_mach = info->l.l_mach; + GL(dl_rtld_map).l_relocated = 1; #endif _dl_setup_hash (&GL(dl_rtld_map)); GL(dl_rtld_map).l_real = &GL(dl_rtld_map); |