]> git.saurik.com Git - apple/xnu.git/blob - bsd/sys/ioctl_compat.h
23b7e6f4b33353ebd4fc78460081381224a3750c
[apple/xnu.git] / bsd / sys / ioctl_compat.h
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the
10 * License may not be used to create, or enable the creation or
11 * redistribution of, unlawful or unlicensed copies of an Apple operating
12 * system, or to circumvent, violate, or enable the circumvention or
13 * violation of, any terms of an Apple operating system software license
14 * agreement.
15 *
16 * Please obtain a copy of the License at
17 * http://www.opensource.apple.com/apsl/ and read it before using this
18 * file.
19 *
20 * The Original Code and all software distributed under the License are
21 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
22 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
23 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
25 * Please see the License for the specific language governing rights and
26 * limitations under the License.
27 *
28 * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
29 */
30 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
31 /*
32 * Copyright (c) 1990, 1993
33 * The Regents of the University of California. All rights reserved.
34 * (c) UNIX System Laboratories, Inc.
35 * All or some portions of this file are derived from material licensed
36 * to the University of California by American Telephone and Telegraph
37 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
38 * the permission of UNIX System Laboratories, Inc.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 * 3. All advertising materials mentioning features or use of this software
49 * must display the following acknowledgement:
50 * This product includes software developed by the University of
51 * California, Berkeley and its contributors.
52 * 4. Neither the name of the University nor the names of its contributors
53 * may be used to endorse or promote products derived from this software
54 * without specific prior written permission.
55 *
56 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
57 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
58 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
59 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
60 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
61 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
62 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
64 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
65 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * SUCH DAMAGE.
67 *
68 * @(#)ioctl_compat.h 8.4 (Berkeley) 1/21/94
69 */
70
71 #ifndef _SYS_IOCTL_COMPAT_H_
72 #define _SYS_IOCTL_COMPAT_H_
73
74 #include <sys/ttychars.h>
75 #include <sys/ttydev.h>
76
77 struct tchars {
78 char t_intrc; /* interrupt */
79 char t_quitc; /* quit */
80 char t_startc; /* start output */
81 char t_stopc; /* stop output */
82 char t_eofc; /* end-of-file */
83 char t_brkc; /* input delimiter (like nl) */
84 };
85
86 struct ltchars {
87 char t_suspc; /* stop process signal */
88 char t_dsuspc; /* delayed stop process signal */
89 char t_rprntc; /* reprint line */
90 char t_flushc; /* flush output (toggles) */
91 char t_werasc; /* word erase */
92 char t_lnextc; /* literal next character */
93 };
94
95 /*
96 * Structure for TIOCGETP and TIOCSETP ioctls.
97 */
98 #ifndef _SGTTYB_
99 #define _SGTTYB_
100 struct sgttyb {
101 char sg_ispeed; /* input speed */
102 char sg_ospeed; /* output speed */
103 char sg_erase; /* erase character */
104 char sg_kill; /* kill character */
105 short sg_flags; /* mode flags */
106 };
107 #endif
108
109 #ifdef USE_OLD_TTY
110 # undef TIOCGETD
111 # define TIOCGETD _IOR('t', 0, int) /* get line discipline */
112 # undef TIOCSETD
113 # define TIOCSETD _IOW('t', 1, int) /* set line discipline */
114 #else
115 # define OTIOCGETD _IOR('t', 0, int) /* get line discipline */
116 # define OTIOCSETD _IOW('t', 1, int) /* set line discipline */
117 #endif
118 #define TIOCHPCL _IO('t', 2) /* hang up on last close */
119 #define TIOCGETP _IOR('t', 8,struct sgttyb)/* get parameters -- gtty */
120 #define TIOCSETP _IOW('t', 9,struct sgttyb)/* set parameters -- stty */
121 #define TIOCSETN _IOW('t',10,struct sgttyb)/* as above, but no flushtty*/
122 #define TIOCSETC _IOW('t',17,struct tchars)/* set special characters */
123 #define TIOCGETC _IOR('t',18,struct tchars)/* get special characters */
124 #define TANDEM 0x00000001 /* send stopc on out q full */
125 #define CBREAK 0x00000002 /* half-cooked mode */
126 #define LCASE 0x00000004 /* simulate lower case */
127 #define ECHO 0x00000008 /* echo input */
128 #define CRMOD 0x00000010 /* map \r to \r\n on output */
129 #define RAW 0x00000020 /* no i/o processing */
130 #define ODDP 0x00000040 /* get/send odd parity */
131 #define EVENP 0x00000080 /* get/send even parity */
132 #define ANYP 0x000000c0 /* get any parity/send none */
133 #define NLDELAY 0x00000300 /* \n delay */
134 #define TBDELAY 0x00000c00 /* horizontal tab delay */
135 #define XTABS 0x00000c00 /* expand tabs on output */
136 #define CRDELAY 0x00003000 /* \r delay */
137 #define VTDELAY 0x00004000 /* vertical tab delay */
138 #define BSDELAY 0x00008000 /* \b delay */
139 #ifndef _SYS_TERMIOS_H_
140 /*
141 * These manifest constants have the same names as those in <sys/termios.h>,
142 * so you are not permitted to have both definitions in scope simultaneously
143 * in the same compilation unit.
144 */
145 #define NL0 0x00000000
146 #define NL1 0x00000100 /* tty 37 */
147 #define NL2 0x00000200 /* vt05 */
148 #define NL3 0x00000300
149 #define TAB0 0x00000000
150 #define TAB1 0x00000400 /* tty 37 */
151 #define TAB2 0x00000800
152 #define CR0 0x00000000
153 #define CR1 0x00001000 /* tn 300 */
154 #define CR2 0x00002000 /* tty 37 */
155 #define CR3 0x00003000 /* concept 100 */
156 #define FF0 0x00000000
157 #define FF1 0x00004000 /* tty 37 */
158 #define BS0 0x00000000
159 #define BS1 0x00008000
160 #endif /* !_SYS_TERMIOS_H_ */
161 #define ALLDELAY (NLDELAY|TBDELAY|CRDELAY|VTDELAY|BSDELAY)
162 #define CRTBS 0x00010000 /* do backspacing for crt */
163 #define PRTERA 0x00020000 /* \ ... / erase */
164 #define CRTERA 0x00040000 /* " \b " to wipe out char */
165 #define TILDE 0x00080000 /* hazeltine tilde kludge */
166 #define MDMBUF 0x00100000 /*start/stop output on carrier*/
167 #define LITOUT 0x00200000 /* literal output */
168 #define TOSTOP 0x00400000 /*SIGSTOP on background output*/
169 #define FLUSHO 0x00800000 /* flush output to terminal */
170 #define NOHANG 0x01000000 /* (no-op) was no SIGHUP on carrier drop */
171 #define L001000 0x02000000
172 #define CRTKIL 0x04000000 /* kill line with " \b " */
173 #define PASS8 0x08000000
174 #define CTLECH 0x10000000 /* echo control chars as ^X */
175 #define PENDIN 0x20000000 /* tp->t_rawq needs reread */
176 #define DECCTQ 0x40000000 /* only ^Q starts after ^S */
177 #define NOFLSH 0x80000000 /* no output flush on signal */
178 #define TIOCLBIS _IOW('t', 127, int) /* bis local mode bits */
179 #define TIOCLBIC _IOW('t', 126, int) /* bic local mode bits */
180 #define TIOCLSET _IOW('t', 125, int) /* set entire local mode word */
181 #define TIOCLGET _IOR('t', 124, int) /* get local modes */
182 #define LCRTBS (CRTBS>>16)
183 #define LPRTERA (PRTERA>>16)
184 #define LCRTERA (CRTERA>>16)
185 #define LTILDE (TILDE>>16)
186 #define LMDMBUF (MDMBUF>>16)
187 #define LLITOUT (LITOUT>>16)
188 #define LTOSTOP (TOSTOP>>16)
189 #define LFLUSHO (FLUSHO>>16)
190 #define LNOHANG (NOHANG>>16)
191 #define LCRTKIL (CRTKIL>>16)
192 #define LPASS8 (PASS8>>16)
193 #define LCTLECH (CTLECH>>16)
194 #define LPENDIN (PENDIN>>16)
195 #define LDECCTQ (DECCTQ>>16)
196 #define LNOFLSH (NOFLSH>>16)
197 #define TIOCSLTC _IOW('t',117,struct ltchars)/* set local special chars*/
198 #define TIOCGLTC _IOR('t',116,struct ltchars)/* get local special chars*/
199 #define OTIOCCONS _IO('t', 98) /* for hp300 -- sans int arg */
200 #define OTTYDISC 0
201 #define NETLDISC 1
202 #define NTTYDISC 2
203
204 #define TIOCGSID _IOR('t', 99, int) /* For svr4 -- get session id */
205
206 #endif /* !_SYS_IOCTL_COMPAT_H_ */