2.9
[glibc/nacl-glibc.git] / sysdeps / mach / hurd / sigprocmask.c
blobcbb5ecce2e0169ff4607855ac675052c6c1b26f5
1 /* Copyright (C) 1991,92,93,94,95,96,97,2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <errno.h>
20 #include <signal.h>
21 #include <hurd.h>
22 #include <hurd/signal.h>
23 #include <hurd/msg.h>
25 /* If SET is not NULL, modify the current set of blocked signals
26 according to HOW, which may be SIG_BLOCK, SIG_UNBLOCK or SIG_SETMASK.
27 If OSET is not NULL, store the old set of blocked signals in *OSET. */
28 int
29 __sigprocmask (how, set, oset)
30 int how;
31 const sigset_t *set;
32 sigset_t *oset;
34 struct hurd_sigstate *ss;
35 sigset_t old, new;
36 sigset_t pending;
38 if (set != NULL)
39 new = *set;
41 ss = _hurd_self_sigstate ();
43 __spin_lock (&ss->lock);
45 old = ss->blocked;
47 if (set != NULL)
49 switch (how)
51 case SIG_BLOCK:
52 __sigorset (&ss->blocked, &ss->blocked, &new);
53 break;
55 case SIG_UNBLOCK:
56 ss->blocked &= ~new;
57 break;
59 case SIG_SETMASK:
60 ss->blocked = new;
61 break;
63 default:
64 __spin_unlock (&ss->lock);
65 errno = EINVAL;
66 return -1;
69 ss->blocked &= ~_SIG_CANT_MASK;
72 pending = ss->pending & ~ss->blocked;
74 __spin_unlock (&ss->lock);
76 if (oset != NULL)
77 *oset = old;
79 if (pending)
80 /* Send a message to the signal thread so it
81 will wake up and check for pending signals. */
82 __msg_sig_post (_hurd_msgport, 0, 0, __mach_task_self ());
84 return 0;
87 weak_alias (__sigprocmask, sigprocmask)