aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/ioctl_compat.h
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2009-09-06 09:39:40 +0000
committerEd Schouten <ed@FreeBSD.org>2009-09-06 09:39:40 +0000
commit30fe9de0bbcb8acca8d38090e5958f5691c6f39f (patch)
tree99289f951cd34778870a8dbfeb2282e0d55e462a /sys/sys/ioctl_compat.h
parent950ab2f81e52396a59a006f88d9fb39e32da6078 (diff)
downloadsrc-30fe9de0bbcb8acca8d38090e5958f5691c6f39f.tar.gz
src-30fe9de0bbcb8acca8d38090e5958f5691c6f39f.zip
Perform cleanups to the TTY headers:
- Properly sort the ioctls in ioctl_compat.h. Also perform some whitespace fixes. - Properly comment all the unused/compat ioctls in ttycom.h.
Notes
Notes: svn path=/head/; revision=196884
Diffstat (limited to 'sys/sys/ioctl_compat.h')
-rw-r--r--sys/sys/ioctl_compat.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/sys/sys/ioctl_compat.h b/sys/sys/ioctl_compat.h
index f4a9af62da25..d12cd5a8862c 100644
--- a/sys/sys/ioctl_compat.h
+++ b/sys/sys/ioctl_compat.h
@@ -73,12 +73,12 @@ struct sgttyb {
#define OTIOCGETD _IOR('t', 0, int) /* get line discipline */
#define OTIOCSETD _IOW('t', 1, int) /* set line discipline */
-#define TIOCHPCL _IO('t', 2) /* hang up on last close */
-#define TIOCGETP _IOR('t', 8,struct sgttyb)/* get parameters -- gtty */
-#define TIOCSETP _IOW('t', 9,struct sgttyb)/* set parameters -- stty */
-#define TIOCSETN _IOW('t',10,struct sgttyb)/* as above, but no flushtty*/
-#define TIOCSETC _IOW('t',17,struct tchars)/* set special characters */
-#define TIOCGETC _IOR('t',18,struct tchars)/* get special characters */
+#define TIOCHPCL _IO('t', 2) /* hang up on last close */
+#define TIOCGETP _IOR('t', 8, struct sgttyb) /* get parameters */
+#define TIOCSETP _IOW('t', 9, struct sgttyb) /* set parameters */
+#define TIOCSETN _IOW('t',10, struct sgttyb) /* as above, but no flush */
+#define TIOCSETC _IOW('t',17, struct tchars) /* set special characters */
+#define TIOCGETC _IOR('t',18, struct tchars) /* get special characters */
#define TANDEM 0x00000001 /* send stopc on out q full */
#define CBREAK 0x00000002 /* half-cooked mode */
#define LCASE 0x00000004 /* simulate lower case */
@@ -126,9 +126,9 @@ struct sgttyb {
#define PENDIN 0x20000000 /* tp->t_rawq needs reread */
#define DECCTQ 0x40000000 /* only ^Q starts after ^S */
#define NOFLSH 0x80000000 /* no output flush on signal */
-#define TIOCLBIS _IOW('t', 127, int) /* bis local mode bits */
-#define TIOCLBIC _IOW('t', 126, int) /* bic local mode bits */
-#define TIOCLSET _IOW('t', 125, int) /* set entire local mode word */
+#define OTIOCCONS _IO('t', 98) /* for hp300 -- sans int arg */
+#define TIOCGLTC _IOR('t', 116,struct ltchars) /* get special chars */
+#define TIOCSLTC _IOW('t', 117,struct ltchars) /* set special chars */
#define TIOCLGET _IOR('t', 124, int) /* get local modes */
#define LCRTBS (CRTBS>>16)
#define LPRTERA (PRTERA>>16)
@@ -145,8 +145,8 @@ struct sgttyb {
#define LPENDIN (PENDIN>>16)
#define LDECCTQ (DECCTQ>>16)
#define LNOFLSH (NOFLSH>>16)
-#define TIOCSLTC _IOW('t',117,struct ltchars)/* set local special chars*/
-#define TIOCGLTC _IOR('t',116,struct ltchars)/* get local special chars*/
-#define OTIOCCONS _IO('t', 98) /* for hp300 -- sans int arg */
+#define TIOCLSET _IOW('t', 125, int) /* set entire local mode word */
+#define TIOCLBIC _IOW('t', 126, int) /* bic local mode bits */
+#define TIOCLBIS _IOW('t', 127, int) /* bis local mode bits */
#endif /* !_SYS_IOCTL_COMPAT_H_ */