Merge "ndk: <signal.h>: Increase _NSIG definition to 64"

This commit is contained in:
Andrew Hsieh
2012-04-02 03:03:52 -07:00
committed by android code review
2 changed files with 16 additions and 10 deletions

View File

@@ -42,12 +42,15 @@ __BEGIN_DECLS
typedef int sig_atomic_t; typedef int sig_atomic_t;
/* crepy NIG / _NSIG handling, just to be safe */ /* _NSIG is used by the SIGRTMAX definition under <asm/signal.h>, however
#ifndef NSIG * its definition is part of a #if __KERNEL__ .. #endif block in the original
# define NSIG _NSIG * kernel headers and is thus not part of our cleaned-up versions.
#endif *
* Looking at the current kernel sources, it is defined as 64 for all
* architectures except for the 'mips' one which set it to 128.
*/
#ifndef _NSIG #ifndef _NSIG
# define _NSIG NSIG # define _NSIG 64
#endif #endif
extern const char * const sys_siglist[]; extern const char * const sys_siglist[];

View File

@@ -43,12 +43,15 @@ __BEGIN_DECLS
typedef int sig_atomic_t; typedef int sig_atomic_t;
/* crepy NIG / _NSIG handling, just to be safe */ /* _NSIG is used by the SIGRTMAX definition under <asm/signal.h>, however
#ifndef NSIG * its definition is part of a #if __KERNEL__ .. #endif block in the original
# define NSIG _NSIG * kernel headers and is thus not part of our cleaned-up versions.
#endif *
* Looking at the current kernel sources, it is defined as 64 for all
* architectures except for the 'mips' one which set it to 128.
*/
#ifndef _NSIG #ifndef _NSIG
# define _NSIG NSIG # define _NSIG 64
#endif #endif
extern const char * const sys_siglist[]; extern const char * const sys_siglist[];