From 65b98213e4a12997a519e34695250d9f3a4d6bc7 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 21 Nov 2012 13:41:58 -0500 Subject: add back NSIG, removed from powerpc in last commit, but for all archs unlike the previous definition, NSIG/_NSIG is supposed to be one more than the highest signal number. adding this will allow simplifying libc-internal code that makes signal-related syscalls, which can be done as a later step. some apps might use it too; while this usage is questionable, it's at least not insane. --- arch/powerpc/bits/signal.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/powerpc') diff --git a/arch/powerpc/bits/signal.h b/arch/powerpc/bits/signal.h index a5c311ba..56b599ef 100644 --- a/arch/powerpc/bits/signal.h +++ b/arch/powerpc/bits/signal.h @@ -114,3 +114,5 @@ typedef struct __ucontext { #define SIGPWR 30 #define SIGSYS 31 #define SIGUNUSED SIGSYS + +#define _NSIG 65 -- cgit v1.2.1