diff options
author | Elliott Hughes <enh@google.com> | 2014-04-30 09:45:40 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-04-30 10:06:09 -0700 |
commit | 0990d4fda898ada86e557f872f5cb7d16b138e3c (patch) | |
tree | 43cd74258c43e23e8008c15aebdb0a3efd476f6c /libc/kernel/uapi/asm-generic | |
parent | 77473e408504a7e298816b4071cd6902065b03d8 (diff) | |
download | bionic-0990d4fda898ada86e557f872f5cb7d16b138e3c.zip bionic-0990d4fda898ada86e557f872f5cb7d16b138e3c.tar.gz bionic-0990d4fda898ada86e557f872f5cb7d16b138e3c.tar.bz2 |
Make SIGRTMIN hide the real-time signals we use internally.
__SIGRTMIN will continue to tell the truth. This matches glibc's
behavior (as evidenced by the fact that we don't need a special case
in the strsignal test now).
Change-Id: I1abe1681d516577afa8cd39c837ef12467f68dd2
Diffstat (limited to 'libc/kernel/uapi/asm-generic')
-rw-r--r-- | libc/kernel/uapi/asm-generic/signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/kernel/uapi/asm-generic/signal.h b/libc/kernel/uapi/asm-generic/signal.h index fe7d9a0..a16622a 100644 --- a/libc/kernel/uapi/asm-generic/signal.h +++ b/libc/kernel/uapi/asm-generic/signal.h @@ -66,9 +66,9 @@ #define SIGSYS 31 #define SIGUNUSED 31 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ -#define SIGRTMIN 32 +#define __SIGRTMIN 32 #ifndef SIGRTMAX -#define SIGRTMAX _KERNEL__NSIG +#define __SIGRTMAX _KERNEL__NSIG #endif /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define SA_NOCLDSTOP 0x00000001 |