about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-01-31 23:00:15 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-01-31 23:00:15 +0000
commit32a45bea390b39e3be3cfa81c68a5892eaa539d2 (patch)
treecbab4b38b61bf6adcece85d3476bd5e2e12ef11c /sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c
parent2e8a5c8c46f0a897a2629131eb86d1cae8321234 (diff)
downloadglibc-32a45bea390b39e3be3cfa81c68a5892eaa539d2.tar.gz
glibc-32a45bea390b39e3be3cfa81c68a5892eaa539d2.tar.xz
glibc-32a45bea390b39e3be3cfa81c68a5892eaa539d2.zip
Remove CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c')
-rw-r--r--sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c b/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c
index ca6ff69485..57d172d610 100644
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c
@@ -21,7 +21,6 @@
 
 #include <sysdep.h>
 #include <sys/syscall.h>
-#include <bp-checks.h>
 
 /* Change the set of blocked signals to SET,
    wait until a signal arrives, and restore the set of blocked signals.  */
@@ -31,5 +30,5 @@ sigpending (set)
 {
   /* XXX The size argument hopefully will have to be changed to the
      real size of the user-level sigset_t.  */
-  return INLINE_SYSCALL (rt_sigpending, 2, CHECK_SIGSET (set), _NSIG / 8);
+  return INLINE_SYSCALL (rt_sigpending, 2, set, _NSIG / 8);
 }