aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorCarlos O'Donell <carlos_odonell@mentor.com>2012-08-16 08:36:24 -0700
committerCarlos O'Donell <carlos_odonell@mentor.com>2012-08-16 08:41:05 -0700
commit30f696374d434578a159712552f3da533f02e8dd (patch)
tree548752821598648be65ca48fb1ce163ec5e3a908 /sysdeps
parent93a78ac437ba44f493333d7e2a4b0249839ce460 (diff)
downloadglibc-30f696374d434578a159712552f3da533f02e8dd.zip
glibc-30f696374d434578a159712552f3da533f02e8dd.tar.gz
glibc-30f696374d434578a159712552f3da533f02e8dd.tar.bz2
Fifth argument of la_pltenter() is not constant.
The original runtime linker auditing interface described by Solaris allows the 5th argument of la_pltenter() to be modified. This patch cleans up the ldsodefs.h definitions such that the 5th argument is not constant. At one point the 5th argument *was* constant but this was changed with commit 2413fdba7a02ba8916f75d17199a6e9133a8f7b0. This patch updates alpha, ia64, mips, sh and sparc with similar changes.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/sh/ldsodefs.h2
-rw-r--r--sysdeps/sparc/ldsodefs.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/sh/ldsodefs.h b/sysdeps/sh/ldsodefs.h
index 66d1e2f..74c0f41 100644
--- a/sysdeps/sh/ldsodefs.h
+++ b/sysdeps/sh/ldsodefs.h
@@ -26,7 +26,7 @@ struct La_sh_retval;
#define ARCH_PLTENTER_MEMBERS \
uintptr_t (*sh_gnu_pltenter) (Elf32_Sym *, unsigned int, uintptr_t *, \
- uintptr_t *, const struct La_sh_regs *, \
+ uintptr_t *, struct La_sh_regs *, \
unsigned int *, const char *name, \
long int *framesizep)
diff --git a/sysdeps/sparc/ldsodefs.h b/sysdeps/sparc/ldsodefs.h
index 2cfdc49..dc68860 100644
--- a/sysdeps/sparc/ldsodefs.h
+++ b/sysdeps/sparc/ldsodefs.h
@@ -29,12 +29,12 @@ struct La_sparc64_retval;
#define ARCH_PLTENTER_MEMBERS \
Elf32_Addr (*sparc32_gnu_pltenter) (Elf32_Sym *, unsigned int, \
uintptr_t *, uintptr_t *, \
- const struct La_sparc32_regs *, \
+ struct La_sparc32_regs *, \
unsigned int *, const char *name, \
long int *framesizep); \
Elf64_Addr (*sparc64_gnu_pltenter) (Elf64_Sym *, unsigned int, \
uintptr_t *, uintptr_t *, \
- const struct La_sparc64_regs *, \
+ struct La_sparc64_regs *, \
unsigned int *, const char *name, \
long int *framesizep)