diff options
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/ldsodefs.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index 6daa5d4ee5..29588207d1 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -187,7 +187,8 @@ struct La_sh_regs; struct La_sh_retval; struct La_m68k_regs; struct La_m68k_retval; - +struct La_alpha_regs; +struct La_alpha_retval; struct audit_ifaces { @@ -228,6 +229,10 @@ struct audit_ifaces uintptr_t *, struct La_m68k_regs *, unsigned int *, const char *name, long int *framesizep); + Elf64_Addr (*alpha_gnu_pltenter) (Elf64_Sym *, unsigned int, uintptr_t *, + uintptr_t *, struct La_alpha_regs *, + unsigned int *, const char *name, + long int *framesizep); }; union { @@ -253,6 +258,10 @@ struct audit_ifaces unsigned int (*m68k_gnu_pltexit) (Elf32_Sym *, unsigned int, uintptr_t *, uintptr_t *, const struct La_m68k_regs *, struct La_m68k_retval *, const char *); + unsigned int (*alpha_gnu_pltexit) (Elf64_Sym *, unsigned int, uintptr_t *, + uintptr_t *, + const struct La_alpha_regs *, + struct La_alpha_retval *, const char *); }; unsigned int (*objclose) (uintptr_t *); |