Avoid using signal 127 and 128 as RT signals, these two signals confuse

wait4 interfaces, see PR: kern/19402.
This commit is contained in:
David Xu 2005-11-30 23:47:31 +00:00
parent 6023800194
commit 045d4ae3f6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=152973

View File

@ -114,7 +114,7 @@
#endif
#define SIGRTMIN 65
#define SIGRTMAX 128
#define SIGRTMAX 126
#define SIG_DFL ((__sighandler_t *)0)
#define SIG_IGN ((__sighandler_t *)1)