|
|
1.1 root 1: /*
2: * Copyright (c) 1988, 1989 The Regents of the University of California.
3: * All rights reserved.
4: *
5: * Redistribution and use in source and binary forms, with or without
6: * modification, are permitted provided that the following conditions
7: * are met:
8: * 1. Redistributions of source code must retain the above copyright
9: * notice, this list of conditions and the following disclaimer.
10: * 2. Redistributions in binary form must reproduce the above copyright
11: * notice, this list of conditions and the following disclaimer in the
12: * documentation and/or other materials provided with the distribution.
13: * 3. All advertising materials mentioning features or use of this software
14: * must display the following acknowledgement:
15: * This product includes software developed by the University of
16: * California, Berkeley and its contributors.
17: * 4. Neither the name of the University nor the names of its contributors
18: * may be used to endorse or promote products derived from this software
19: * without specific prior written permission.
20: *
21: * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22: * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24: * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27: * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29: * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31: * SUCH DAMAGE.
32: *
1.1.1.2 ! root 33: * from: @(#)termios.h 7.22 (Berkeley) 5/7/91
! 34: * termios.h,v 1.5 1993/06/05 22:40:40 cgd Exp
1.1 root 35: */
36:
1.1.1.2 ! root 37: #ifndef _SYS_TERMIOS_H_
! 38: #define _SYS_TERMIOS_H_
! 39:
1.1 root 40: /*
41: * termios structure
42: */
43:
44: /*
45: * Special Control Characters
46: *
47: * Index into c_cc[] character array.
48: *
49: * Name Subscript Enabled by
50: */
51: #define VEOF 0 /* ICANON */
52: #define VEOL 1 /* ICANON */
53: #ifndef _POSIX_SOURCE
54: #define VEOL2 2 /* ICANON */
55: #endif
56: #define VERASE 3 /* ICANON */
57: #ifndef _POSIX_SOURCE
58: #define VWERASE 4 /* ICANON */
59: #endif
60: #define VKILL 5 /* ICANON */
61: #ifndef _POSIX_SOURCE
62: #define VREPRINT 6 /* ICANON */
63: #endif
64: /* 7 spare 1 */
65: #define VINTR 8 /* ISIG */
66: #define VQUIT 9 /* ISIG */
67: #define VSUSP 10 /* ISIG */
68: #ifndef _POSIX_SOURCE
69: #define VDSUSP 11 /* ISIG */
70: #endif
71: #define VSTART 12 /* IXON, IXOFF */
72: #define VSTOP 13 /* IXON, IXOFF */
73: #ifndef _POSIX_SOURCE
74: #define VLNEXT 14 /* IEXTEN */
75: #define VDISCARD 15 /* IEXTEN */
76: #endif
77: #define VMIN 16 /* !ICANON */
78: #define VTIME 17 /* !ICANON */
79: #ifndef _POSIX_SOURCE
80: #define VSTATUS 18 /* ICANON */
81: /* 19 spare 2 */
82: #endif
1.1.1.2 ! root 83: #define NCCS 20
1.1 root 84:
85: #define _POSIX_VDISABLE ((unsigned char)'\377')
86:
87: #ifndef _POSIX_SOURCE
88: #define CCEQ(val, c) (c == val ? val != _POSIX_VDISABLE : 0)
89: #endif
90:
91: /*
92: * Input flags - software input processing
93: */
94: #define IGNBRK 0x00000001 /* ignore BREAK condition */
95: #define BRKINT 0x00000002 /* map BREAK to SIGINTR */
96: #define IGNPAR 0x00000004 /* ignore (discard) parity errors */
97: #define PARMRK 0x00000008 /* mark parity and framing errors */
98: #define INPCK 0x00000010 /* enable checking of parity errors */
99: #define ISTRIP 0x00000020 /* strip 8th bit off chars */
100: #define INLCR 0x00000040 /* map NL into CR */
101: #define IGNCR 0x00000080 /* ignore CR */
102: #define ICRNL 0x00000100 /* map CR to NL (ala CRMOD) */
103: #define IXON 0x00000200 /* enable output flow control */
104: #define IXOFF 0x00000400 /* enable input flow control */
105: #ifndef _POSIX_SOURCE
106: #define IXANY 0x00000800 /* any char will restart after stop */
107: #define IMAXBEL 0x00002000 /* ring bell on input queue full */
108: #endif /*_POSIX_SOURCE */
109:
110: /*
111: * Output flags - software output processing
112: */
113: #define OPOST 0x00000001 /* enable following output processing */
114: #ifndef _POSIX_SOURCE
115: #define ONLCR 0x00000002 /* map NL to CR-NL (ala CRMOD) */
116: #define OXTABS 0x00000004 /* expand tabs to spaces */
117: #define ONOEOT 0x00000008 /* discard EOT's (^D) on output) */
118: #endif /*_POSIX_SOURCE */
119:
120: /*
121: * Control flags - hardware control of terminal
122: */
123: #ifndef _POSIX_SOURCE
124: #define CIGNORE 0x00000001 /* ignore control flags */
125: #endif
126: #define CSIZE 0x00000300 /* character size mask */
127: #define CS5 0x00000000 /* 5 bits (pseudo) */
128: #define CS6 0x00000100 /* 6 bits */
129: #define CS7 0x00000200 /* 7 bits */
130: #define CS8 0x00000300 /* 8 bits */
131: #define CSTOPB 0x00000400 /* send 2 stop bits */
132: #define CREAD 0x00000800 /* enable receiver */
133: #define PARENB 0x00001000 /* parity enable */
134: #define PARODD 0x00002000 /* odd parity, else even */
135: #define HUPCL 0x00004000 /* hang up on last close */
136: #define CLOCAL 0x00008000 /* ignore modem status lines */
137: #ifndef _POSIX_SOURCE
138: #define CCTS_OFLOW 0x00010000 /* CTS flow control of output */
139: #define CRTSCTS CCTS_OFLOW /* ??? */
140: #define CRTS_IFLOW 0x00020000 /* RTS flow control of input */
141: #define MDMBUF 0x00100000 /* flow control output via Carrier */
142: #endif
143:
144:
145: /*
146: * "Local" flags - dumping ground for other state
147: *
148: * Warning: some flags in this structure begin with
149: * the letter "I" and look like they belong in the
150: * input flag.
151: */
152:
153: #ifndef _POSIX_SOURCE
154: #define ECHOKE 0x00000001 /* visual erase for line kill */
155: #endif /*_POSIX_SOURCE */
156: #define ECHOE 0x00000002 /* visually erase chars */
157: #define ECHOK 0x00000004 /* echo NL after line kill */
158: #define ECHO 0x00000008 /* enable echoing */
159: #define ECHONL 0x00000010 /* echo NL even if ECHO is off */
160: #ifndef _POSIX_SOURCE
161: #define ECHOPRT 0x00000020 /* visual erase mode for hardcopy */
162: #define ECHOCTL 0x00000040 /* echo control chars as ^(Char) */
163: #endif /*_POSIX_SOURCE */
164: #define ISIG 0x00000080 /* enable signals INTR, QUIT, [D]SUSP */
165: #define ICANON 0x00000100 /* canonicalize input lines */
166: #ifndef _POSIX_SOURCE
167: #define ALTWERASE 0x00000200 /* use alternate WERASE algorithm */
168: #endif /*_POSIX_SOURCE */
169: #define IEXTEN 0x00000400 /* enable DISCARD and LNEXT */
170: #define EXTPROC 0x00000800 /* external processing */
171: #define TOSTOP 0x00400000 /* stop background jobs from output */
172: #ifndef _POSIX_SOURCE
173: #define FLUSHO 0x00800000 /* output being flushed (state) */
174: #define NOKERNINFO 0x02000000 /* no kernel output from VSTATUS */
175: #define PENDIN 0x20000000 /* XXX retype pending input (state) */
176: #endif /*_POSIX_SOURCE */
177: #define NOFLSH 0x80000000 /* don't flush after interrupt */
178:
179: typedef unsigned long tcflag_t;
180: typedef unsigned char cc_t;
181: typedef long speed_t;
182:
183: struct termios {
184: tcflag_t c_iflag; /* input flags */
185: tcflag_t c_oflag; /* output flags */
186: tcflag_t c_cflag; /* control flags */
187: tcflag_t c_lflag; /* local flags */
188: cc_t c_cc[NCCS]; /* control chars */
189: long c_ispeed; /* input speed */
190: long c_ospeed; /* output speed */
191: };
192:
193: /*
194: * Commands passed to tcsetattr() for setting the termios structure.
195: */
196: #define TCSANOW 0 /* make change immediate */
197: #define TCSADRAIN 1 /* drain output, then change */
198: #define TCSAFLUSH 2 /* drain output, flush input */
199: #ifndef _POSIX_SOURCE
200: #define TCSASOFT 0x10 /* flag - don't alter h.w. state */
201: #endif
202:
203: /*
204: * Standard speeds
205: */
206: #define B0 0
207: #define B50 50
208: #define B75 75
209: #define B110 110
210: #define B134 134
211: #define B150 150
212: #define B200 200
213: #define B300 300
214: #define B600 600
215: #define B1200 1200
216: #define B1800 1800
217: #define B2400 2400
218: #define B4800 4800
219: #define B9600 9600
220: #define B19200 19200
221: #define B38400 38400
222: #ifndef _POSIX_SOURCE
223: #define EXTA 19200
224: #define EXTB 38400
225: #endif /*_POSIX_SOURCE */
1.1.1.2 ! root 226: #define B57600 57600
! 227: #define B115200 115200
1.1 root 228:
229: #ifndef KERNEL
230:
231: #include <sys/cdefs.h>
232:
233: __BEGIN_DECLS
234: speed_t cfgetispeed __P((const struct termios *));
235: speed_t cfgetospeed __P((const struct termios *));
236: int cfsetispeed __P((struct termios *, speed_t));
237: int cfsetospeed __P((struct termios *, speed_t));
238: int tcdrain __P((int));
239: int tcflow __P((int, int));
240: int tcflush __P((int, int));
241: int tcgetattr __P((int, struct termios *));
242: int tcsendbreak __P((int, int));
243: int tcsetattr __P((int, int, const struct termios *));
244:
245: #define TCIFLUSH 1
246: #define TCOFLUSH 2
247: #define TCIOFLUSH 3
248: #define TCOOFF 1
249: #define TCOON 2
250: #define TCIOFF 3
251: #define TCION 4
252:
253: #ifndef _POSIX_SOURCE
254: void cfmakeraw __P((struct termios *));
255: void cfsetspeed __P((struct termios *, speed_t));
256: #endif /* !POSIX */
257: __END_DECLS
258:
259: #endif /* !KERNEL */
260:
1.1.1.2 ! root 261: #endif /* !_SYS_TERMIOS_H_ */
1.1 root 262:
263: #ifndef _POSIX_SOURCE
264: #ifdef KERNEL
265: #include "ttydefaults.h"
266: #else
267: #include <sys/ttydefaults.h>
268: #endif
269: #endif /*_POSIX_SOURCE */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.