Wed Feb 14 00:21:17 1996 David Mosberger-Tang <davidm@azstarnet.com>
[platform/upstream/glibc.git] / sysdeps / unix / sysv / linux / alpha / sigprocmask.c
1 /* Copyright (C) 1993, 1995 Free Software Foundation, Inc.
2    Contributed by David Mosberger (davidm@azstarnet.com).
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA.  */
18
19 #include <sysdep.h>
20 #include <signal.h>
21
22 extern unsigned long __osf_sigprocmask (int how, unsigned long newmask);
23
24 int
25 __sigprocmask (int how, const sigset_t *set, sigset_t *oset)
26 {
27   sigset_t setval;
28   long result;
29
30   if (set) {
31     setval = *set;
32   } else {
33     sigemptyset(&setval);
34     how = SIG_BLOCK;    /* ensure blocked mask doesn't get changed */
35   }
36   result = __osf_sigprocmask(how, setval);
37   if (result == -1) {
38     /* if there are ever more than 63 signals, we need to recode this
39        in assembler since we wouldn't be able to distinguish a mask of
40        all 1s from -1, but for now, we're doing just fine... */
41     return result;
42   }
43   if (oset) {
44     *oset = result;
45   }
46   return 0;
47 }
48
49 weak_alias (__sigprocmask, sigprocmask);