Commit a6ef9c8f authored by Mark Salter's avatar Mark Salter Committed by Linus Torvalds

MN10300: Fix SIGRTMAX

SIGRTMAX should be _NSIG not _NSIG-1.
Signed-off-by: default avatarMark Salter <msalter@redhat.com>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent fd429a08
...@@ -78,7 +78,7 @@ typedef unsigned long sigset_t; ...@@ -78,7 +78,7 @@ typedef unsigned long sigset_t;
/* These should not be considered constants from userland. */ /* These should not be considered constants from userland. */
#define SIGRTMIN 32 #define SIGRTMIN 32
#define SIGRTMAX (_NSIG-1) #define SIGRTMAX _NSIG
/* /*
* SA_FLAGS values: * SA_FLAGS values:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment