diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-01-31 23:00:15 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-01-31 23:00:15 +0000 |
commit | 32a45bea390b39e3be3cfa81c68a5892eaa539d2 (patch) | |
tree | cbab4b38b61bf6adcece85d3476bd5e2e12ef11c /sysdeps/unix/sysv/linux/sigwaitinfo.c | |
parent | 2e8a5c8c46f0a897a2629131eb86d1cae8321234 (diff) | |
download | glibc-32a45bea390b39e3be3cfa81c68a5892eaa539d2.tar.gz |
Remove CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sigwaitinfo.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/sigwaitinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/sigwaitinfo.c b/sysdeps/unix/sysv/linux/sigwaitinfo.c index bd85e95955..46afb46ef2 100644 --- a/sysdeps/unix/sysv/linux/sigwaitinfo.c +++ b/sysdeps/unix/sysv/linux/sigwaitinfo.c @@ -52,7 +52,7 @@ do_sigwaitinfo (const sigset_t *set, siginfo_t *info) /* XXX The size argument hopefully will have to be changed to the real size of the user-level sigset_t. */ - int result = INLINE_SYSCALL (rt_sigtimedwait, 4, CHECK_SIGSET (set), + int result = INLINE_SYSCALL (rt_sigtimedwait, 4, set, CHECK_1 (info), NULL, _NSIG / 8); /* The kernel generates a SI_TKILL code in si_code in case tkill is |