summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/sigprocmask.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-04-26 22:51:23 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:43 +0200
commit028183a24d7dc921dbfc26a548675dcbae002f20 (patch)
treec751a322451556b4ec934e2414be95b65e819f1a /libc/sysdeps/linux/common/sigprocmask.c
parent5fc54227982c5e5edd060396f9fe2639795622d0 (diff)
change _NSIG / 8 to __SYSCALL_SIGSET_T_SIZE in common code
Since mips has different kernel sigset_t, use the new macro in common code that is used by mips as well. Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/sigprocmask.c')
-rw-r--r--libc/sysdeps/linux/common/sigprocmask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/sigprocmask.c b/libc/sysdeps/linux/common/sigprocmask.c
index 011d7b367..623003352 100644
--- a/libc/sysdeps/linux/common/sigprocmask.c
+++ b/libc/sysdeps/linux/common/sigprocmask.c
@@ -47,7 +47,7 @@ int sigprocmask(int how, const sigset_t * set, sigset_t * oldset)
}
#endif
- return __rt_sigprocmask(how, set, oldset, _NSIG / 8);
+ return __rt_sigprocmask(how, set, oldset, __SYSCALL_SIGSET_T_SIZE);
}