1 /* Copyright (C) 1997, 1998, 1999, 2000, 2001 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
24 #include <sys/syscall.h>
25 #include <bp-checks.h>
27 #include "kernel-features.h"
30 extern int __syscall_sigprocmask (int, const sigset_t
*__unbounded
,
31 sigset_t
*__unbounded
);
32 extern int __syscall_rt_sigprocmask (int, const sigset_t
*__unbounded
,
33 sigset_t
*__unbounded
, size_t);
35 /* The variable is shared between all wrappers around signal handling
36 functions which have RT equivalents. The definition is in sigaction.c. */
37 extern int __libc_missing_rt_sigs
;
40 /* Get and/or change the set of blocked signals. */
42 __sigprocmask (how
, set
, oset
)
47 #if __ASSUME_REALTIME_SIGNALS > 0
48 return INLINE_SYSCALL (rt_sigprocmask
, 4, how
, CHECK_SIGSET_NULL_OK (set
),
49 CHECK_SIGSET_NULL_OK (oset
), _NSIG
/ 8);
51 # ifdef __NR_rt_sigprocmask
52 /* First try the RT signals. */
53 if (!__libc_missing_rt_sigs
)
55 /* XXX The size argument hopefully will have to be changed to the
56 real size of the user-level sigset_t. */
57 int saved_errno
= errno
;
58 int result
= INLINE_SYSCALL (rt_sigprocmask
, 4, how
,
59 CHECK_SIGSET_NULL_OK (set
),
60 CHECK_SIGSET_NULL_OK (oset
), _NSIG
/ 8);
62 if (result
>= 0 || errno
!= ENOSYS
)
65 __set_errno (saved_errno
);
66 __libc_missing_rt_sigs
= 1;
70 return INLINE_SYSCALL (sigprocmask
, 3, how
, CHECK_SIGSET_NULL_OK (set
),
71 CHECK_SIGSET_NULL_OK (oset
));
74 weak_alias (__sigprocmask
, sigprocmask
)