aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-01-07 11:36:07 +0000
committerUlrich Drepper <drepper@redhat.com>2005-01-07 11:36:07 +0000
commit8222199266b283514206a99247f8e3d3b63e2037 (patch)
tree2ba16e8cdd9f73cd977715c3277326f1220e58f0 /sysdeps/generic
parentea0034f3bf8e5e3733f8193e708db83452cf15c0 (diff)
downloadglibc-8222199266b283514206a99247f8e3d3b63e2037.zip
glibc-8222199266b283514206a99247f8e3d3b63e2037.tar.gz
glibc-8222199266b283514206a99247f8e3d3b63e2037.tar.bz2
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 'sysdeps/generic')
-rw-r--r--sysdeps/generic/ldsodefs.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h
index 4a181f4..108b63b 100644
--- a/sysdeps/generic/ldsodefs.h
+++ b/sysdeps/generic/ldsodefs.h
@@ -1,5 +1,5 @@
/* Run-time dynamic linker data structures for loaded ELF shared objects.
- Copyright (C) 1995-2002, 2003, 2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-2003, 2004, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -179,6 +179,8 @@ struct La_i86_regs;
struct La_i86_retval;
struct La_x86_64_regs;
struct La_x86_64_retval;
+struct La_ppc64_regs;
+struct La_ppc64_retval;
struct audit_ifaces
@@ -205,6 +207,11 @@ struct audit_ifaces
const struct La_x86_64_regs *,
unsigned int *, const char *name,
long int *framesizep);
+ uintptr_t (*ppc64_gnu_pltenter) (Elf64_Sym *, unsigned int, uintptr_t *,
+ uintptr_t *,
+ const struct La_ppc64_regs *,
+ unsigned int *, const char *name,
+ long int *framesizep);
};
union
{
@@ -216,6 +223,11 @@ struct audit_ifaces
const struct La_x86_64_regs *,
struct La_x86_64_retval *,
const char *);
+ unsigned int (*ppc64_gnu_pltexit) (Elf64_Sym *, unsigned int, uintptr_t *,
+ uintptr_t *,
+ const struct La_ppc64_regs *,
+ struct La_ppc64_retval *,
+ const char *);
};
unsigned int (*objclose) (uintptr_t *);