From 028183a24d7dc921dbfc26a548675dcbae002f20 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 26 Apr 2011 22:51:23 +0200 Subject: 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 Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/sigprocmask.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/sysdeps/linux/common/sigprocmask.c') 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); } -- cgit v1.2.3