]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/sigsuspend.c
update from main archive 961119
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / sigsuspend.c
CommitLineData
1177c8ba 1/* Copyright (C) 1996 Free Software Foundation, Inc.
84384f5b 2 This file is part of the GNU C Library.
1177c8ba 3
84384f5b
UD
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.
1177c8ba 8
84384f5b
UD
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.
1177c8ba 13
84384f5b
UD
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 not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
1177c8ba 18
1177c8ba
RM
19#include <signal.h>
20#include <stddef.h>
21#include <unistd.h>
22
23extern int __syscall_sigsuspend (int, unsigned long, unsigned long);
24
25/* Change the set of blocked signals to SET,
26 wait until a signal arrives, and restore the set of blocked signals. */
27int
84384f5b 28__sigsuspend (set)
c4029823 29 const sigset_t *set;
1177c8ba
RM
30{
31 return __syscall_sigsuspend (0, 0, *set);
32}
84384f5b 33weak_alias (__sigsuspend, sigsuspend)