Skip to content

Commit

Permalink
MN10300: Fix SIGRTMAX
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Mark Salter authored and Linus Torvalds committed Sep 23, 2010
1 parent fd429a0 commit a6ef9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mn10300/include/asm/signal.h
Original file line number Diff line number Diff line change
@@ -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:

0 comments on commit a6ef9c8

Please sign in to comment.