diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-26 10:08:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-26 10:08:17 +0000 |
commit | 7804eb37e8db3dad34f1bc422ec033209de137ce (patch) | |
tree | dd71cb9913fa7dc57e9e4ef70ddf39f4a633c0d4 /sysdeps/unix/sysv/linux/sigprocmask.c | |
parent | 0dbd556796f099b54bcfbdec5b1baa2f4d1ab940 (diff) | |
download | glibc-7804eb37e8db3dad34f1bc422ec033209de137ce.tar.gz glibc-7804eb37e8db3dad34f1bc422ec033209de137ce.tar.xz glibc-7804eb37e8db3dad34f1bc422ec033209de137ce.zip |
Update.
1999-01-26 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/sigaction.c: Update comment to say the __libc_missing_rt_sigs is defined here. * sysdeps/unix/sysv/linux/sigpending.c: Only declare __libc_missing_rt_sigs. * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise. * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sigprocmask.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/sigprocmask.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/sigprocmask.c b/sysdeps/unix/sysv/linux/sigprocmask.c index 2028ed5e11..5e72c9892d 100644 --- a/sysdeps/unix/sysv/linux/sigprocmask.c +++ b/sysdeps/unix/sysv/linux/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 1999 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 @@ -28,8 +28,8 @@ extern int __syscall_rt_sigprocmask (int, const sigset_t *, sigset_t *, size_t); /* The variable is shared between all wrappers around signal handling - functions which have RT equivalents. */ -int __libc_missing_rt_sigs; + functions which have RT equivalents. The definition is in sigaction.c. */ +extern int __libc_missing_rt_sigs; /* Get and/or change the set of blocked signals. */ |