diff options
author | Mark Salter <msalter@redhat.com> | 2010-09-23 18:04:28 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-23 10:20:57 -0700 |
commit | a6ef9c8f1635ccd175be9eb5d36c376ffb8fbc51 (patch) | |
tree | 6d8f26dde3b29fd613adb250ad0b8c224ce6ee21 /arch/mn10300 | |
parent | fd429a0842c61b60e02a7e63430a609957821c67 (diff) | |
download | linux-3.10-a6ef9c8f1635ccd175be9eb5d36c376ffb8fbc51.tar.gz linux-3.10-a6ef9c8f1635ccd175be9eb5d36c376ffb8fbc51.tar.bz2 linux-3.10-a6ef9c8f1635ccd175be9eb5d36c376ffb8fbc51.zip |
MN10300: Fix SIGRTMAX
SIGRTMAX should be _NSIG not _NSIG-1.
Signed-off-by: Mark Salter <msalter@redhat.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/mn10300')
-rw-r--r-- | arch/mn10300/include/asm/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mn10300/include/asm/signal.h b/arch/mn10300/include/asm/signal.h index 7e891fce237..1865d72a86f 100644 --- a/arch/mn10300/include/asm/signal.h +++ b/arch/mn10300/include/asm/signal.h @@ -78,7 +78,7 @@ typedef unsigned long sigset_t; /* These should not be considered constants from userland. */ #define SIGRTMIN 32 -#define SIGRTMAX (_NSIG-1) +#define SIGRTMAX _NSIG /* * SA_FLAGS values: |