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
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. */
36 do_sigwait (const sigset_t
*set
, int *sig
)
39 struct sigaction saved
[NSIG
];
40 struct sigaction action
;
45 __sigfillset (&tmp_mask
);
47 /* Unblock all signals in the SET and register our nice handler. */
48 action
.sa_handler
= ignore_signal
;
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. */
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)
67 /* Now we can wait for signals. */
68 __sigsuspend (&tmp_mask
);
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. */
82 return was_sig
== -1 ? -1 : 0;
87 __sigwait (const sigset_t
*set
, int *sig
)
90 return do_sigwait (set
, sig
);
92 int oldtype
= LIBC_CANCEL_ASYNC ();
94 int result
= do_sigwait (set
, sig
);
96 LIBC_CANCEL_RESET (oldtype
);
100 libc_hidden_def (__sigwait
)
101 weak_alias (__sigwait
, sigwait
)
105 ignore_signal (int sig
)
107 /* Remember the signal. */