xref: /illumos-gate/usr/src/ucbhead/sys/ioctl.h (revision 8c0b080c8ed055a259d8cd26b9f005211c6a9753)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright 1997 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
28*7c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
29*7c478bd9Sstevel@tonic-gate 
30*7c478bd9Sstevel@tonic-gate /*
31*7c478bd9Sstevel@tonic-gate  * University Copyright- Copyright (c) 1982, 1986, 1988
32*7c478bd9Sstevel@tonic-gate  * The Regents of the University of California
33*7c478bd9Sstevel@tonic-gate  * All Rights Reserved
34*7c478bd9Sstevel@tonic-gate  *
35*7c478bd9Sstevel@tonic-gate  * University Acknowledgment- Portions of this document are derived from
36*7c478bd9Sstevel@tonic-gate  * software developed by the University of California, Berkeley, and its
37*7c478bd9Sstevel@tonic-gate  * contributors.
38*7c478bd9Sstevel@tonic-gate  */
39*7c478bd9Sstevel@tonic-gate 
40*7c478bd9Sstevel@tonic-gate /*
41*7c478bd9Sstevel@tonic-gate  *      There are some inherent problems in having a single file
42*7c478bd9Sstevel@tonic-gate  *      ioctl.h, with both System V and BSD flags. Introducing
43*7c478bd9Sstevel@tonic-gate  * 	BSD flags into this file creates compilation problems
44*7c478bd9Sstevel@tonic-gate  *	with flags such as ECHO, NL1 etc., if termio.h and ioctl.h
45*7c478bd9Sstevel@tonic-gate  *      are included by the same file. Since these two files can
46*7c478bd9Sstevel@tonic-gate  * 	be only included by System V applications, /usr/include/sys/ioctl.h
47*7c478bd9Sstevel@tonic-gate  *      will be System V mode and all the BSD flags will be turned off
48*7c478bd9Sstevel@tonic-gate  *      using #ifdef BSD_COMP. This file will also exist in
49*7c478bd9Sstevel@tonic-gate  *	/usr/ucbinclude/sys/ioctl.h for BSD applications but without the
50*7c478bd9Sstevel@tonic-gate  *      BSD flags turned off. System V appliactions can use ioctl.h without
51*7c478bd9Sstevel@tonic-gate  *      any changes, System V applications requiring BSD flags should
52*7c478bd9Sstevel@tonic-gate  *      -D BSD_COMP when compiling (and be warned about the common
53*7c478bd9Sstevel@tonic-gate  *      flags between System V and BSD) and BSD applications should
54*7c478bd9Sstevel@tonic-gate  * 	use /usr/ucbinclude/sys/ioctl.h.
55*7c478bd9Sstevel@tonic-gate  *
56*7c478bd9Sstevel@tonic-gate  */
57*7c478bd9Sstevel@tonic-gate 
58*7c478bd9Sstevel@tonic-gate #ifndef _SYS_IOCTL_H
59*7c478bd9Sstevel@tonic-gate #define	_SYS_IOCTL_H
60*7c478bd9Sstevel@tonic-gate 
61*7c478bd9Sstevel@tonic-gate #define	IOCTYPE	0xff00
62*7c478bd9Sstevel@tonic-gate 
63*7c478bd9Sstevel@tonic-gate #define	LIOC	('l'<<8)
64*7c478bd9Sstevel@tonic-gate #define	LIOCGETP	(LIOC|1)
65*7c478bd9Sstevel@tonic-gate #define	LIOCSETP	(LIOC|2)
66*7c478bd9Sstevel@tonic-gate #define	LIOCGETS	(LIOC|5)
67*7c478bd9Sstevel@tonic-gate #define	LIOCSETS	(LIOC|6)
68*7c478bd9Sstevel@tonic-gate 
69*7c478bd9Sstevel@tonic-gate #define	DIOC	('d'<<8)
70*7c478bd9Sstevel@tonic-gate #define	DIOCGETC	(DIOC|1)
71*7c478bd9Sstevel@tonic-gate #define	DIOCGETB	(DIOC|2)
72*7c478bd9Sstevel@tonic-gate #define	DIOCSETE	(DIOC|3)
73*7c478bd9Sstevel@tonic-gate 
74*7c478bd9Sstevel@tonic-gate /* BSD related defines */
75*7c478bd9Sstevel@tonic-gate 
76*7c478bd9Sstevel@tonic-gate #include <sys/types.h>
77*7c478bd9Sstevel@tonic-gate #include <sys/ttychars.h>
78*7c478bd9Sstevel@tonic-gate #include <sys/ttydev.h>
79*7c478bd9Sstevel@tonic-gate #include <sys/ttold.h>
80*7c478bd9Sstevel@tonic-gate 
81*7c478bd9Sstevel@tonic-gate #define	TANDEM		O_TANDEM
82*7c478bd9Sstevel@tonic-gate #define	CBREAK		O_CBREAK
83*7c478bd9Sstevel@tonic-gate #ifndef _SGTTY_H
84*7c478bd9Sstevel@tonic-gate #define	LCASE		O_LCASE
85*7c478bd9Sstevel@tonic-gate #define	ECHO		O_ECHO
86*7c478bd9Sstevel@tonic-gate #define	CRMOD		O_CRMOD
87*7c478bd9Sstevel@tonic-gate #define	RAW		O_RAW
88*7c478bd9Sstevel@tonic-gate #define	ODDP		O_ODDP
89*7c478bd9Sstevel@tonic-gate #define	EVENP		O_EVENP
90*7c478bd9Sstevel@tonic-gate #define	ANYP		O_ANYP
91*7c478bd9Sstevel@tonic-gate #define	NLDELAY		O_NLDELAY
92*7c478bd9Sstevel@tonic-gate #define		NL0		O_NL0
93*7c478bd9Sstevel@tonic-gate #define		NL1		O_NL1
94*7c478bd9Sstevel@tonic-gate #define		NL2		O_NL2
95*7c478bd9Sstevel@tonic-gate #define		NL3		O_NL3
96*7c478bd9Sstevel@tonic-gate #define	TBDELAY		O_TBDELAY
97*7c478bd9Sstevel@tonic-gate #define		TAB0		O_TAB0
98*7c478bd9Sstevel@tonic-gate #define		TAB1		O_TAB1
99*7c478bd9Sstevel@tonic-gate #define		TAB2		O_TAB2
100*7c478bd9Sstevel@tonic-gate #define	XTABS		O_XTABS
101*7c478bd9Sstevel@tonic-gate #define	CRDELAY		O_CRDELAY
102*7c478bd9Sstevel@tonic-gate #define		CR0		O_CR0
103*7c478bd9Sstevel@tonic-gate #define		CR1		O_CR1
104*7c478bd9Sstevel@tonic-gate #define		CR2		O_CR2
105*7c478bd9Sstevel@tonic-gate #define		CR3		O_CR3
106*7c478bd9Sstevel@tonic-gate #define	VTDELAY		O_VTDELAY
107*7c478bd9Sstevel@tonic-gate #define		FF0		O_FF0
108*7c478bd9Sstevel@tonic-gate #define		FF1		O_FF1
109*7c478bd9Sstevel@tonic-gate #define	BSDELAY		O_BSDELAY
110*7c478bd9Sstevel@tonic-gate #define		BS0		O_BS0
111*7c478bd9Sstevel@tonic-gate #define		BS1		O_BS1
112*7c478bd9Sstevel@tonic-gate #define		ALLDELAY	O_ALLDELAY
113*7c478bd9Sstevel@tonic-gate #endif /* _SGTTY_H */
114*7c478bd9Sstevel@tonic-gate #define	CRTBS		O_CRTBS
115*7c478bd9Sstevel@tonic-gate #define	PRTERA		O_PRTERA
116*7c478bd9Sstevel@tonic-gate #define	CRTERA		O_CRTERA
117*7c478bd9Sstevel@tonic-gate #define	TILDE		O_TILDE
118*7c478bd9Sstevel@tonic-gate #define	MDMBUF		O_MDMBUF
119*7c478bd9Sstevel@tonic-gate #define	LITOUT		O_LITOUT
120*7c478bd9Sstevel@tonic-gate #define	TOSTOP		O_TOSTOP
121*7c478bd9Sstevel@tonic-gate #define	FLUSHO		O_FLUSHO
122*7c478bd9Sstevel@tonic-gate #define	NOHANG		O_NOHANG
123*7c478bd9Sstevel@tonic-gate #define	L001000		O_L001000
124*7c478bd9Sstevel@tonic-gate #define	CRTKIL		O_CRTKIL
125*7c478bd9Sstevel@tonic-gate #define	PASS8		O_PASS8
126*7c478bd9Sstevel@tonic-gate #define	CTLECH		O_CTLECH
127*7c478bd9Sstevel@tonic-gate #define	PENDIN		O_PENDIN
128*7c478bd9Sstevel@tonic-gate #define	DECCTQ		O_DECCTQ
129*7c478bd9Sstevel@tonic-gate #define	NOFLSH		O_NOFLSH
130*7c478bd9Sstevel@tonic-gate 
131*7c478bd9Sstevel@tonic-gate #define	TIOCGSIZE	TIOCGWINSZ
132*7c478bd9Sstevel@tonic-gate #define	TIOCSSIZE	TIOCSWINSZ
133*7c478bd9Sstevel@tonic-gate 
134*7c478bd9Sstevel@tonic-gate #ifndef tIOC
135*7c478bd9Sstevel@tonic-gate #define	tIOC    ('t'<<8)
136*7c478bd9Sstevel@tonic-gate #endif
137*7c478bd9Sstevel@tonic-gate 
138*7c478bd9Sstevel@tonic-gate #ifndef TIOCGPGRP
139*7c478bd9Sstevel@tonic-gate #define	TIOCGPGRP	(tIOC|20)	/* get pgrp of tty */
140*7c478bd9Sstevel@tonic-gate #define	TIOCSPGRP	(tIOC|21)	/* set pgrp of tty */
141*7c478bd9Sstevel@tonic-gate #endif
142*7c478bd9Sstevel@tonic-gate 
143*7c478bd9Sstevel@tonic-gate #include <sys/filio.h>
144*7c478bd9Sstevel@tonic-gate #include <sys/sockio.h>
145*7c478bd9Sstevel@tonic-gate 
146*7c478bd9Sstevel@tonic-gate #endif	/* _SYS_IOCTL_H */
147