2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / alpha / bits / termios.h
blob966ccf94dab7449f4bb53e6fc3b9aae9c2eee97c
1 /* termios type and macro definitions. Linux version.
2 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2003, 2005
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #ifndef _TERMIOS_H
22 # error "Never include <bits/termios.h> directly; use <termios.h> instead."
23 #endif
25 typedef unsigned char cc_t;
26 typedef unsigned int speed_t;
27 typedef unsigned int tcflag_t;
29 #define NCCS 32
30 struct termios
32 tcflag_t c_iflag; /* input mode flags */
33 tcflag_t c_oflag; /* output mode flags */
34 tcflag_t c_cflag; /* control mode flags */
35 tcflag_t c_lflag; /* local mode flags */
36 cc_t c_cc[NCCS]; /* control characters */
37 cc_t c_line; /* line discipline (== c_cc[33]) */
38 speed_t c_ispeed; /* input speed */
39 speed_t c_ospeed; /* output speed */
40 #define _HAVE_STRUCT_TERMIOS_C_ISPEED 1
41 #define _HAVE_STRUCT_TERMIOS_C_OSPEED 1
44 /* c_cc characters */
45 #define VEOF 0
46 #define VEOL 1
47 #define VEOL2 2
48 #define VERASE 3
49 #define VWERASE 4
50 #define VKILL 5
51 #define VREPRINT 6
52 #define VSWTC 7
53 #define VINTR 8
54 #define VQUIT 9
55 #define VSUSP 10
56 #define VSTART 12
57 #define VSTOP 13
58 #define VLNEXT 14
59 #define VDISCARD 15
60 #define VMIN 16
61 #define VTIME 17
63 /* c_iflag bits */
64 #define IGNBRK 0000001
65 #define BRKINT 0000002
66 #define IGNPAR 0000004
67 #define PARMRK 0000010
68 #define INPCK 0000020
69 #define ISTRIP 0000040
70 #define INLCR 0000100
71 #define IGNCR 0000200
72 #define ICRNL 0000400
73 #define IXON 0001000
74 #define IXOFF 0002000
75 #ifdef __USE_BSD
76 /* POSIX.1 doesn't want these... */
77 # define IXANY 0004000
78 # define IUCLC 0010000
79 # define IMAXBEL 0020000
80 # define IUTF8 0040000
81 #endif
83 /* c_oflag bits */
84 #define OPOST 0000001
85 #define ONLCR 0000002
86 #define OLCUC 0000004
88 #define OCRNL 0000010
89 #define ONOCR 0000020
90 #define ONLRET 0000040
92 #define OFILL 00000100
93 #define OFDEL 00000200
94 #if defined __USE_MISC || defined __USE_XOPEN
95 # define NLDLY 00001400
96 # define NL0 00000000
97 # define NL1 00000400
98 # define NL2 00001000
99 # define NL3 00001400
100 # define TABDLY 00006000
101 # define TAB0 00000000
102 # define TAB1 00002000
103 # define TAB2 00004000
104 # define TAB3 00006000
105 # define CRDLY 00030000
106 # define CR0 00000000
107 # define CR1 00010000
108 # define CR2 00020000
109 # define CR3 00030000
110 # define FFDLY 00040000
111 # define FF0 00000000
112 # define FF1 00040000
113 # define BSDLY 00100000
114 # define BS0 00000000
115 # define BS1 00100000
116 #endif
118 #define VTDLY 00200000
119 #define VT0 00000000
120 #define VT1 00200000
122 #ifdef __USE_MISC
123 # define XTABS 01000000 /* Hmm.. Linux/i386 considers this part of TABDLY.. */
124 #endif
126 /* c_cflag bit meaning */
127 #ifdef __USE_MISC
128 # define CBAUD 0000037
129 #endif
130 #define B0 0000000 /* hang up */
131 #define B50 0000001
132 #define B75 0000002
133 #define B110 0000003
134 #define B134 0000004
135 #define B150 0000005
136 #define B200 0000006
137 #define B300 0000007
138 #define B600 0000010
139 #define B1200 0000011
140 #define B1800 0000012
141 #define B2400 0000013
142 #define B4800 0000014
143 #define B9600 0000015
144 #define B19200 0000016
145 #define B38400 0000017
146 #ifdef __USE_MISC
147 # define EXTA B19200
148 # define EXTB B38400
149 # define CBAUDEX 0000000
150 #endif
151 #define B57600 00020
152 #define B115200 00021
153 #define B230400 00022
154 #define B460800 00023
155 #define B500000 00024
156 #define B576000 00025
157 #define B921600 00026
158 #define B1000000 00027
159 #define B1152000 00030
160 #define B1500000 00031
161 #define B2000000 00032
162 #define B2500000 00033
163 #define B3000000 00034
164 #define B3500000 00035
165 #define B4000000 00036
167 #define __MAX_BAUD B4000000
169 #define CSIZE 00001400
170 #define CS5 00000000
171 #define CS6 00000400
172 #define CS7 00001000
173 #define CS8 00001400
175 #define CSTOPB 00002000
176 #define CREAD 00004000
177 #define PARENB 00010000
178 #define PARODD 00020000
179 #define HUPCL 00040000
181 #define CLOCAL 00100000
182 #ifdef __USE_MISC
183 # define CMSPAR 010000000000 /* mark or space (stick) parity */
184 # define CRTSCTS 020000000000 /* flow control */
185 #endif
187 /* c_lflag bits */
188 #define ISIG 0x00000080
189 #define ICANON 0x00000100
190 #if defined __USE_MISC || defined __USE_XOPEN
191 # define XCASE 0x00004000
192 #endif
193 #define ECHO 0x00000008
194 #define ECHOE 0x00000002
195 #define ECHOK 0x00000004
196 #define ECHONL 0x00000010
197 #define NOFLSH 0x80000000
198 #define TOSTOP 0x00400000
199 #ifdef __USE_MISC
200 # define ECHOCTL 0x00000040
201 # define ECHOPRT 0x00000020
202 # define ECHOKE 0x00000001
203 # define FLUSHO 0x00800000
204 # define PENDIN 0x20000000
205 #endif
206 #define IEXTEN 0x00000400
208 /* Values for the ACTION argument to `tcflow'. */
209 #define TCOOFF 0
210 #define TCOON 1
211 #define TCIOFF 2
212 #define TCION 3
214 /* Values for the QUEUE_SELECTOR argument to `tcflush'. */
215 #define TCIFLUSH 0
216 #define TCOFLUSH 1
217 #define TCIOFLUSH 2
219 /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
220 #define TCSANOW 0
221 #define TCSADRAIN 1
222 #define TCSAFLUSH 2
225 #define _IOT_termios /* Hurd ioctl type field. */ \
226 _IOT (_IOTS (cflag_t), 4, _IOTS (cc_t), NCCS, _IOTS (speed_t), 2)