(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / sysv / linux / alpha / bits / termios.h
blobf26e84c9f6e1a93a608508b2b7c0037a02728f62
1 /* termios type and macro definitions. Linux version.
2 Copyright (C) 1993,1994,1995,1996,1997,1999,2003
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 #define NLDLY 00001400
95 #define NL0 00000000
96 #define NL1 00000400
97 #define NL2 00001000
98 #define NL3 00001400
99 #define TABDLY 00006000
100 #define TAB0 00000000
101 #define TAB1 00002000
102 #define TAB2 00004000
103 #define TAB3 00006000
104 #define CRDLY 00030000
105 #define CR0 00000000
106 #define CR1 00010000
107 #define CR2 00020000
108 #define CR3 00030000
109 #define FFDLY 00040000
110 #define FF0 00000000
111 #define FF1 00040000
112 #define BSDLY 00100000
113 #define BS0 00000000
114 #define BS1 00100000
115 #define VTDLY 00200000
116 #define VT0 00000000
117 #define VT1 00200000
118 #define XTABS 01000000 /* Hmm.. Linux/i386 considers this part of TABDLY.. */
120 /* c_cflag bit meaning */
121 #define CBAUD 0000037
122 #define B0 0000000 /* hang up */
123 #define B50 0000001
124 #define B75 0000002
125 #define B110 0000003
126 #define B134 0000004
127 #define B150 0000005
128 #define B200 0000006
129 #define B300 0000007
130 #define B600 0000010
131 #define B1200 0000011
132 #define B1800 0000012
133 #define B2400 0000013
134 #define B4800 0000014
135 #define B9600 0000015
136 #define B19200 0000016
137 #define B38400 0000017
138 #define EXTA B19200
139 #define EXTB B38400
140 #define CBAUDEX 0000000
141 #define B57600 00020
142 #define B115200 00021
143 #define B230400 00022
144 #define B460800 00023
145 #define B500000 00024
146 #define B576000 00025
147 #define B921600 00026
148 #define B1000000 00027
149 #define B1152000 00030
150 #define B1500000 00031
151 #define B2000000 00032
152 #define B2500000 00033
153 #define B3000000 00034
154 #define B3500000 00035
155 #define B4000000 00036
157 #define __MAX_BAUD B4000000
159 #define CSIZE 00001400
160 #define CS5 00000000
161 #define CS6 00000400
162 #define CS7 00001000
163 #define CS8 00001400
165 #define CSTOPB 00002000
166 #define CREAD 00004000
167 #define PARENB 00010000
168 #define PARODD 00020000
169 #define HUPCL 00040000
171 #define CLOCAL 00100000
172 #define CRTSCTS 020000000000 /* flow control */
174 /* c_lflag bits */
175 #define ISIG 0x00000080
176 #define ICANON 0x00000100
177 #define XCASE 0x00004000
178 #define ECHO 0x00000008
179 #define ECHOE 0x00000002
180 #define ECHOK 0x00000004
181 #define ECHONL 0x00000010
182 #define NOFLSH 0x80000000
183 #define TOSTOP 0x00400000
184 #define ECHOCTL 0x00000040
185 #define ECHOPRT 0x00000020
186 #define ECHOKE 0x00000001
187 #define FLUSHO 0x00800000
188 #define PENDIN 0x20000000
189 #define IEXTEN 0x00000400
191 /* Values for the ACTION argument to `tcflow'. */
192 #define TCOOFF 0
193 #define TCOON 1
194 #define TCIOFF 2
195 #define TCION 3
197 /* Values for the QUEUE_SELECTOR argument to `tcflush'. */
198 #define TCIFLUSH 0
199 #define TCOFLUSH 1
200 #define TCIOFLUSH 2
202 /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
203 #define TCSANOW 0
204 #define TCSADRAIN 1
205 #define TCSAFLUSH 2
208 #define _IOT_termios /* Hurd ioctl type field. */ \
209 _IOT (_IOTS (cflag_t), 4, _IOTS (cc_t), NCCS, _IOTS (speed_t), 2)