From c0f53cdd08913ef09f9bb66fb1b14cd88598cff9 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 7 Jul 2000 00:52:01 +0000 Subject: Update. 2000-07-06 Ulrich Drepper * include/signal.h: Declare __libc_sigaction. * sysdeps/unix/sysv/linux/Versions: Export __libc_sigaction. * sysdeps/unix/sysv/linux/sigaction.c: Add __libc_sigaction alias. * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise. * configure.in: Fix CLAGS-memprofstat.c definition after 2000-06-19 change. Patch by Bradford W. Johnson . 2000-07-06 Jakub Jelinek * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Pass 0 instead of NULL to elf_machine_fixup_plt t argument. * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/mmap64.c (__mmap64): Add cast. 2000-07-06 Andreas Jaeger * crypt/Makefile (LDLIBS-cert): Removed. (LDLIBS-md5c-test): Removed. ($(objpfx)cert): Renamed from cert.out to fix dependencies. ($(objpfx)md5c-test): Likewise for md5c-test.out. --- sysdeps/unix/sysv/linux/Versions | 2 +- sysdeps/unix/sysv/linux/arm/sigaction.c | 7 ++++--- sysdeps/unix/sysv/linux/i386/sigaction.c | 5 +++-- sysdeps/unix/sysv/linux/ia64/sigaction.c | 5 +++-- sysdeps/unix/sysv/linux/sigaction.c | 7 ++++--- sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c | 8 +++++--- sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c | 8 +++++--- 7 files changed, 25 insertions(+), 17 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/unix/sysv/linux/Versions b/sysdeps/unix/sysv/linux/Versions index 483e0140ae..5b085620db 100644 --- a/sysdeps/unix/sysv/linux/Versions +++ b/sysdeps/unix/sysv/linux/Versions @@ -84,7 +84,7 @@ libc { } GLIBC_2.2 { # needed in other libraries. - __endmntent; __getmntent_r; __setmntent; __statfs; + __endmntent; __getmntent_r; __setmntent; __statfs; __libc_sigaction; # ipc ctl interface change. semctl; shmctl; msgctl; diff --git a/sysdeps/unix/sysv/linux/arm/sigaction.c b/sysdeps/unix/sysv/linux/arm/sigaction.c index 2e70b321ef..ae8b7f8e72 100644 --- a/sysdeps/unix/sysv/linux/arm/sigaction.c +++ b/sysdeps/unix/sysv/linux/arm/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 1999, 2000 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 @@ -55,7 +55,7 @@ extern void __default_rt_sa_restorer(void); /* If ACT is not NULL, change the action for SIG to *ACT. If OACT is not NULL, put the old action for SIG in *OACT. */ int -__sigaction (sig, act, oact) +__libc_sigaction (sig, act, oact) int sig; const struct sigaction *act; struct sigaction *oact; @@ -147,4 +147,5 @@ __sigaction (sig, act, oact) return result; } -weak_alias (__sigaction, sigaction) +strong_alias (__libc_sigaction, __sigaction) +weak_alias (__libc_sigaction, sigaction) diff --git a/sysdeps/unix/sysv/linux/i386/sigaction.c b/sysdeps/unix/sysv/linux/i386/sigaction.c index 5e431218e9..c7493de6bb 100644 --- a/sysdeps/unix/sysv/linux/i386/sigaction.c +++ b/sysdeps/unix/sysv/linux/i386/sigaction.c @@ -55,7 +55,7 @@ static void restore (void) asm ("__restore"); /* If ACT is not NULL, change the action for SIG to *ACT. If OACT is not NULL, put the old action for SIG in *OACT. */ int -__sigaction (int sig, const struct sigaction *act, struct sigaction *oact) +__libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact) { #if __ASSUME_REALTIME_SIGNALS == 0 struct old_kernel_sigaction k_newact, k_oldact; @@ -146,7 +146,8 @@ __sigaction (int sig, const struct sigaction *act, struct sigaction *oact) #endif } -weak_alias (__sigaction, sigaction) +strong_alias (__libc_sigaction, __sigaction) +weak_alias (__libc_sigaction, sigaction) /* NOTE: Please think twice before making any changes to the bits of code below. GDB needs some intimate knowledge about it to diff --git a/sysdeps/unix/sysv/linux/ia64/sigaction.c b/sysdeps/unix/sysv/linux/ia64/sigaction.c index c84964077b..3769abf0ea 100644 --- a/sysdeps/unix/sysv/linux/ia64/sigaction.c +++ b/sysdeps/unix/sysv/linux/ia64/sigaction.c @@ -38,7 +38,7 @@ extern int __syscall_rt_sigaction (int, const struct sigaction *, /* If ACT is not NULL, change the action for SIG to *ACT. If OACT is not NULL, put the old action for SIG in *OACT. */ int -__sigaction (sig, act, oact) +__libc_sigaction (sig, act, oact) int sig; const struct sigaction *act; struct sigaction *oact; @@ -48,4 +48,5 @@ __sigaction (sig, act, oact) return INLINE_SYSCALL (rt_sigaction, 4, sig, act, oact, _NSIG / 8); } -weak_alias (__sigaction, sigaction) +strong_alias (__libc_sigaction, __sigaction) +weak_alias (__libc_sigaction, sigaction) diff --git a/sysdeps/unix/sysv/linux/sigaction.c b/sysdeps/unix/sysv/linux/sigaction.c index dc46bb1b5b..d97b8bf62d 100644 --- a/sysdeps/unix/sysv/linux/sigaction.c +++ b/sysdeps/unix/sysv/linux/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 1999, 2000 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 @@ -45,7 +45,7 @@ extern int __syscall_rt_sigaction (int, const struct kernel_sigaction *, /* If ACT is not NULL, change the action for SIG to *ACT. If OACT is not NULL, put the old action for SIG in *OACT. */ int -__sigaction (sig, act, oact) +__libc_sigaction (sig, act, oact) int sig; const struct sigaction *act; struct sigaction *oact; @@ -131,4 +131,5 @@ __sigaction (sig, act, oact) #endif } -weak_alias (__sigaction, sigaction) +string_alias (__libc_sigaction, __sigaction) +weak_alias (__libc_sigaction, sigaction) diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c b/sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c index b33feeb09c..2b6e58d5bd 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c @@ -1,5 +1,5 @@ /* POSIX.1 sigaction call for Linux/SPARC. - Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza (miguel@nuclecu.unam.mx), 1997. @@ -36,7 +36,8 @@ static void __sigreturn_stub (void); int __libc_missing_rt_sigs; int -__sigaction (int sig, __const struct sigaction *act, struct sigaction *oact) +__libc_sigaction (int sig, __const struct sigaction *act, + struct sigaction *oact) { struct old_kernel_sigaction k_sigact, k_osigact; int ret; @@ -134,7 +135,8 @@ __sigaction (int sig, __const struct sigaction *act, struct sigaction *oact) return -1; } -weak_alias (__sigaction, sigaction); +strong_alias (__libc_sigaction, __sigaction); +weak_alias (__libc_sigaction, sigaction); static void __rt_sigreturn_stub (void) diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c b/sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c index 87468fd409..3fba97fd51 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c @@ -1,5 +1,5 @@ /* POSIX.1 sigaction call for Linux/SPARC64. - Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza (miguel@nuclecu.unam.mx) and Jakub Jelinek (jj@ultra.linux.cz). @@ -31,7 +31,8 @@ static void __rt_sigreturn_stub (void); int -__sigaction (int sig, __const struct sigaction *act, struct sigaction *oact) +__libc_sigaction (int sig, __const struct sigaction *act, + struct sigaction *oact) { int ret; struct kernel_sigaction kact, koact; @@ -61,7 +62,8 @@ __sigaction (int sig, __const struct sigaction *act, struct sigaction *oact) return ret; } -weak_alias (__sigaction, sigaction); +strong_alias (__libc_sigaction, __sigaction); +weak_alias (__libc_sigaction, sigaction); static void __rt_sigreturn_stub (void) -- cgit 1.4.1