1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Remove CHECK_SIGSET and CHECK_SIGSET_NULL_OK.

This commit is contained in:
Joseph Myers
2013-01-31 23:00:15 +00:00
parent 2e8a5c8c46
commit 32a45bea39
15 changed files with 55 additions and 35 deletions

View File

@ -21,7 +21,6 @@
#include <sysdep.h>
#include <sys/syscall.h>
#include <bp-checks.h>
#include <kernel-features.h>
@ -32,5 +31,5 @@ int
sigpending (set)
sigset_t *set;
{
return INLINE_SYSCALL (rt_sigpending, 2, CHECK_SIGSET (set), _NSIG / 8);
return INLINE_SYSCALL (rt_sigpending, 2, set, _NSIG / 8);
}