2.9
[glibc/nacl-glibc.git] / sysdeps / posix / sigwait.c
blob8b422d2b9dcff72edeab3b7b5d9f228f708e4758
1 /* Implementation of sigwait function from POSIX.1c.
2 Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <errno.h>
22 #include <signal.h>
23 #include <stddef.h> /* For NULL. */
24 #include <sysdep-cancel.h>
26 /* This is our dummy signal handler we use here. */
27 static void ignore_signal (int sig);
29 /* Place where to remember which signal we got. Please note that this
30 implementation cannot be used for the threaded libc. The
31 libpthread must provide an own version. */
32 static int was_sig;
35 static int
36 do_sigwait (const sigset_t *set, int *sig)
38 sigset_t tmp_mask;
39 struct sigaction saved[NSIG];
40 struct sigaction action;
41 int save_errno;
42 int this;
44 /* Prepare set. */
45 __sigfillset (&tmp_mask);
47 /* Unblock all signals in the SET and register our nice handler. */
48 action.sa_handler = ignore_signal;
49 action.sa_flags = 0;
50 __sigfillset (&action.sa_mask); /* Block all signals for handler. */
52 /* Make sure we recognize error conditions by setting WAS_SIG to a
53 value which does not describe a legal signal number. */
54 was_sig = -1;
56 for (this = 1; this < NSIG; ++this)
57 if (__sigismember (set, this))
59 /* Unblock this signal. */
60 __sigdelset (&tmp_mask, this);
62 /* Register temporary action handler. */
63 if (__sigaction (this, &action, &saved[this]) != 0)
64 goto restore_handler;
67 /* Now we can wait for signals. */
68 __sigsuspend (&tmp_mask);
70 restore_handler:
71 save_errno = errno;
73 while (--this >= 1)
74 if (__sigismember (set, this))
75 /* We ignore errors here since we must restore all handlers. */
76 __sigaction (this, &saved[this], NULL);
78 __set_errno (save_errno);
80 /* Store the result and return. */
81 *sig = was_sig;
82 return was_sig == -1 ? -1 : 0;
86 int
87 __sigwait (const sigset_t *set, int *sig)
89 if (SINGLE_THREAD_P)
90 return do_sigwait (set, sig);
92 int oldtype = LIBC_CANCEL_ASYNC ();
94 int result = do_sigwait (set, sig);
96 LIBC_CANCEL_RESET (oldtype);
98 return result;
100 libc_hidden_def (__sigwait)
101 weak_alias (__sigwait, sigwait)
104 static void
105 ignore_signal (int sig)
107 /* Remember the signal. */
108 was_sig = sig;