summaryrefslogtreecommitdiffstats
path: root/sys/sys/signal.h
diff options
context:
space:
mode:
authordavidxu <davidxu@FreeBSD.org>2005-11-30 23:47:31 +0000
committerdavidxu <davidxu@FreeBSD.org>2005-11-30 23:47:31 +0000
commit7d0229c86d5167f3f728b4bada9ea0e1fc266f98 (patch)
treeaec0b8666f29f7e223ffbfda76b2104292c88e99 /sys/sys/signal.h
parent44ba92fd8a305caee99b775a8e041b77ea5ee81d (diff)
downloadFreeBSD-src-7d0229c86d5167f3f728b4bada9ea0e1fc266f98.zip
FreeBSD-src-7d0229c86d5167f3f728b4bada9ea0e1fc266f98.tar.gz
Avoid using signal 127 and 128 as RT signals, these two signals confuse
wait4 interfaces, see PR: kern/19402.
Diffstat (limited to 'sys/sys/signal.h')
-rw-r--r--sys/sys/signal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/signal.h b/sys/sys/signal.h
index ff52b64..8690477 100644
--- a/sys/sys/signal.h
+++ b/sys/sys/signal.h
@@ -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)
OpenPOWER on IntegriCloud