diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-05-07 03:23:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-05-07 03:23:21 +0000 |
commit | 4461cf48cf0f58d4ea402b69cea9965be56a61df (patch) | |
tree | 7e3f212c91d72c78f6ace0a4e83be00a9b663ee3 | |
parent | b74a8c7f5f3f76db2ecb46cc421faec2d234a6bc (diff) | |
download | glibc-4461cf48cf0f58d4ea402b69cea9965be56a61df.tar.gz glibc-4461cf48cf0f58d4ea402b69cea9965be56a61df.tar.xz glibc-4461cf48cf0f58d4ea402b69cea9965be56a61df.zip |
* sysdeps/generic/ldsodefs.h: Remove support for non-core
architectures.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | sysdeps/generic/ldsodefs.h | 45 |
2 files changed, 4 insertions, 44 deletions
diff --git a/ChangeLog b/ChangeLog index f8a50760dc..20f1f8d5d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-05-06 Ulrich Drepper <drepper@redhat.com> + * sysdeps/generic/ldsodefs.h: Remove support for non-core + architectures. + * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure that unused memory passed to sendto is nevertheless initialized. diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index 13fefd9e83..6d817651c9 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-2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 1995-2003, 2004, 2005, 2006 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 @@ -193,8 +193,6 @@ struct La_ppc64_regs; struct La_ppc64_retval; 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 La_s390_32_regs; @@ -203,10 +201,6 @@ struct La_s390_64_regs; struct La_s390_64_retval; struct La_ia64_regs; struct La_ia64_retval; -struct La_mips_32_regs; -struct La_mips_32_retval; -struct La_mips_64_regs; -struct La_mips_64_retval; struct La_sparc32_regs; struct La_sparc32_retval; struct La_sparc64_regs; @@ -247,10 +241,6 @@ struct audit_ifaces uintptr_t *, const struct La_sh_regs *, unsigned int *, const char *name, long int *framesizep); - Elf32_Addr (*m68k_gnu_pltenter) (Elf32_Sym *, unsigned int, uintptr_t *, - 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, @@ -267,21 +257,6 @@ struct audit_ifaces uintptr_t *, struct La_ia64_regs *, unsigned int *, const char *name, long int *framesizep); - Elf32_Addr (*mips_o32_gnu_pltenter) (Elf32_Sym *, unsigned int, - uintptr_t *, uintptr_t *, - const struct La_mips_32_regs *, - unsigned int *, const char *name, - long int *framesizep); - Elf32_Addr (*mips_n32_gnu_pltenter) (Elf32_Sym *, unsigned int, - uintptr_t *, uintptr_t *, - const struct La_mips_64_regs *, - unsigned int *, const char *name, - long int *framesizep); - Elf64_Addr (*mips_n64_gnu_pltenter) (Elf64_Sym *, unsigned int, - uintptr_t *, uintptr_t *, - const struct La_mips_64_regs *, - unsigned int *, const char *name, - long int *framesizep); Elf32_Addr (*sparc32_gnu_pltenter) (Elf32_Sym *, unsigned int, uintptr_t *, uintptr_t *, const struct La_sparc32_regs *, @@ -317,9 +292,6 @@ struct audit_ifaces unsigned int (*sh_gnu_pltexit) (Elf32_Sym *, unsigned int, uintptr_t *, uintptr_t *, const struct La_sh_regs *, struct La_sh_retval *, const char *); - 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 *, @@ -338,21 +310,6 @@ struct audit_ifaces uintptr_t *, const struct La_ia64_regs *, struct La_ia64_retval *, const char *); - unsigned int (*mips_o32_gnu_pltexit) (Elf32_Sym *, unsigned int, - uintptr_t *, uintptr_t *, - const struct La_mips_32_regs *, - struct La_mips_32_retval *, - const char *); - unsigned int (*mips_n32_gnu_pltexit) (Elf32_Sym *, unsigned int, - uintptr_t *, uintptr_t *, - const struct La_mips_64_regs *, - struct La_mips_64_retval *, - const char *); - unsigned int (*mips_n64_gnu_pltexit) (Elf64_Sym *, unsigned int, - uintptr_t *, uintptr_t *, - const struct La_mips_64_regs *, - struct La_mips_64_retval *, - const char *); unsigned int (*sparc32_gnu_pltexit) (Elf32_Sym *, unsigned int, uintptr_t *, uintptr_t *, const struct La_sparc32_regs *, |