diff options
author | Roland McGrath <roland@gnu.org> | 2002-09-18 17:45:54 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-09-18 17:45:54 +0000 |
commit | 5ec5c857060f48b27e3369f7d0cfa9291157b0e6 (patch) | |
tree | 226bb8b8a26ed33ed0edebd7059e66a91d921257 /sysdeps/unix/sysv/linux/s390 | |
parent | e17ec21131d07fc0beda17b275ae1a9b6bfb69e3 (diff) | |
download | glibc-5ec5c857060f48b27e3369f7d0cfa9291157b0e6.tar glibc-5ec5c857060f48b27e3369f7d0cfa9291157b0e6.tar.gz glibc-5ec5c857060f48b27e3369f7d0cfa9291157b0e6.tar.bz2 glibc-5ec5c857060f48b27e3369f7d0cfa9291157b0e6.zip |
2002-09-18 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/linux/sigaction.c (__libc_sigaction):
Add libc_hidden_def.
* 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/mips/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c b/sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c index 45bb167f5b..05ee189758 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c +++ b/sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c @@ -16,7 +16,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -/* 64 bit Linux for S/390 only has rt signals, thus we do not even want to try +/* 64 bit Linux for S/390 only has rt signals, thus we do not even want to try falling back to the old style signals as the default Linux handler does. */ #include <errno.h> @@ -45,7 +45,7 @@ __libc_sigaction (sig, act, oact) real size of the user-level sigset_t. */ return INLINE_SYSCALL (rt_sigaction, 4, sig, act, oact, _NSIG / 8); } - +libc_hidden_def (__libc_sigaction) weak_alias (__libc_sigaction, __sigaction) libc_hidden_weak (__sigaction) weak_alias (__libc_sigaction, sigaction) |