summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/sys
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/uts/common/sys')
-rw-r--r--usr/src/uts/common/sys/iso/signal_iso.h5
-rw-r--r--usr/src/uts/common/sys/signal.h4
-rw-r--r--usr/src/uts/common/sys/termios.h4
-rw-r--r--usr/src/uts/common/sys/ttychars.h3
4 files changed, 9 insertions, 7 deletions
diff --git a/usr/src/uts/common/sys/iso/signal_iso.h b/usr/src/uts/common/sys/iso/signal_iso.h
index 0d23dceec3..b1990121b8 100644
--- a/usr/src/uts/common/sys/iso/signal_iso.h
+++ b/usr/src/uts/common/sys/iso/signal_iso.h
@@ -91,10 +91,11 @@ extern "C" {
#define SIGXRES 38 /* resource control exceeded */
#define SIGJVM1 39 /* reserved signal for Java Virtual Machine */
#define SIGJVM2 40 /* reserved signal for Java Virtual Machine */
+#define SIGINFO 41 /* information request */
/* insert new signals here, and move _SIGRTM* appropriately */
-#define _SIGRTMIN 41 /* first (highest-priority) realtime signal */
-#define _SIGRTMAX 72 /* last (lowest-priority) realtime signal */
+#define _SIGRTMIN 42 /* first (highest-priority) realtime signal */
+#define _SIGRTMAX 73 /* last (lowest-priority) realtime signal */
extern long _sysconf(int); /* System Private interface to sysconf() */
#define SIGRTMIN ((int)_sysconf(_SC_SIGRT_MIN)) /* first realtime signal */
#define SIGRTMAX ((int)_sysconf(_SC_SIGRT_MAX)) /* last realtime signal */
diff --git a/usr/src/uts/common/sys/signal.h b/usr/src/uts/common/sys/signal.h
index 1442231536..8f0e1794f4 100644
--- a/usr/src/uts/common/sys/signal.h
+++ b/usr/src/uts/common/sys/signal.h
@@ -158,8 +158,8 @@ struct sigaction32 {
* use of these symbols by applications is injurious
* to binary compatibility
*/
-#define NSIG 73 /* valid signals range from 1 to NSIG-1 */
-#define MAXSIG 72 /* size of u_signal[], NSIG-1 <= MAXSIG */
+#define NSIG 74 /* valid signals range from 1 to NSIG-1 */
+#define MAXSIG 73 /* size of u_signal[], NSIG-1 <= MAXSIG */
#endif /* defined(__EXTENSIONS__) || !defined(_XPG4_2) */
#define MINSIGSTKSZ 2048
diff --git a/usr/src/uts/common/sys/termios.h b/usr/src/uts/common/sys/termios.h
index ddc5dc5207..e66ba0bc6b 100644
--- a/usr/src/uts/common/sys/termios.h
+++ b/usr/src/uts/common/sys/termios.h
@@ -162,7 +162,8 @@ extern pid_t tcgetsid();
#define VDISCARD 13
#define VWERASE 14
#define VLNEXT 15
-/* 16 thru 19 reserved for future use */
+#define VSTATUS 16
+/* 17 through 19 reserved for future use */
/*
* control characters form Xenix termio.h
@@ -194,6 +195,7 @@ extern pid_t tcgetsid();
#define CFLUSH CTRL('o')
#define CWERASE CTRL('w')
#define CLNEXT CTRL('v')
+#define CSTATUS CTRL('t')
#endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
diff --git a/usr/src/uts/common/sys/ttychars.h b/usr/src/uts/common/sys/ttychars.h
index f6751577b5..88ee3a6978 100644
--- a/usr/src/uts/common/sys/ttychars.h
+++ b/usr/src/uts/common/sys/ttychars.h
@@ -35,8 +35,6 @@
#ifndef _SYS_TTYCHARS_H
#define _SYS_TTYCHARS_H
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#ifdef __cplusplus
extern "C" {
#endif
@@ -83,6 +81,7 @@ struct ttychars {
#define CFLUSH CTRL('o')
#define CWERASE CTRL('w')
#define CLNEXT CTRL('v')
+#define CSTATUS CTRL('t')
#endif /* _SYS_TERMIOS_H */