(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / sysv / linux / powerpc / bits / termios.h
blob8a420cb69ce23b3de369e110a188d7897e57caee
1 /* Copyright (C) 1997,1999,2001,2003,2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #ifndef _TERMIOS_H
20 # error "Never include <bits/termios.h> directly; use <termios.h> instead."
21 #endif
23 typedef unsigned char cc_t;
24 typedef unsigned int speed_t;
25 typedef unsigned int tcflag_t;
28 * termios type and macro definitions. Be careful about adding stuff
29 * to this file since it's used in GNU libc and there are strict rules
30 * concerning namespace pollution.
33 #define NCCS 32
34 struct termios {
35 tcflag_t c_iflag; /* input mode flags */
36 tcflag_t c_oflag; /* output mode flags */
37 tcflag_t c_cflag; /* control mode flags */
38 tcflag_t c_lflag; /* local mode flags */
39 cc_t c_line; /* line discipline (== c_cc[19]) */
40 cc_t c_cc[NCCS]; /* control characters */
41 speed_t c_ispeed; /* input speed */
42 speed_t c_ospeed; /* output speed */
43 #define _HAVE_STRUCT_TERMIOS_C_ISPEED 1
44 #define _HAVE_STRUCT_TERMIOS_C_OSPEED 1
47 /* c_cc characters */
48 #define VINTR 0
49 #define VQUIT 1
50 #define VERASE 2
51 #define VKILL 3
52 #define VEOF 4
53 #define VMIN 5
54 #define VEOL 6
55 #define VTIME 7
56 #define VEOL2 8
57 #define VSWTC 9
59 #define VWERASE 10
60 #define VREPRINT 11
61 #define VSUSP 12
62 #define VSTART 13
63 #define VSTOP 14
64 #define VLNEXT 15
65 #define VDISCARD 16
67 /* c_iflag bits */
68 #define IGNBRK 0000001
69 #define BRKINT 0000002
70 #define IGNPAR 0000004
71 #define PARMRK 0000010
72 #define INPCK 0000020
73 #define ISTRIP 0000040
74 #define INLCR 0000100
75 #define IGNCR 0000200
76 #define ICRNL 0000400
77 #define IXON 0001000
78 #define IXOFF 0002000
79 #define IXANY 0004000
80 #define IUCLC 0010000
81 #define IMAXBEL 0020000
82 #define IUTF8 0040000
84 /* c_oflag bits */
85 #define OPOST 0000001
86 #define ONLCR 0000002
87 #define OLCUC 0000004
89 #define OCRNL 0000010
90 #define ONOCR 0000020
91 #define ONLRET 0000040
93 #define OFILL 00000100
94 #define OFDEL 00000200
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 XTABS 00006000 /* Required by POSIX to be == TAB3. */
106 #define CRDLY 00030000
107 #define CR0 00000000
108 #define CR1 00010000
109 #define CR2 00020000
110 #define CR3 00030000
111 #define FFDLY 00040000
112 #define FF0 00000000
113 #define FF1 00040000
114 #define BSDLY 00100000
115 #define BS0 00000000
116 #define BS1 00100000
117 #define VTDLY 00200000
118 #define VT0 00000000
119 #define VT1 00200000
121 /* c_cflag bit meaning */
122 #define CBAUD 0000377
123 #define B0 0000000 /* hang up */
124 #define B50 0000001
125 #define B75 0000002
126 #define B110 0000003
127 #define B134 0000004
128 #define B150 0000005
129 #define B200 0000006
130 #define B300 0000007
131 #define B600 0000010
132 #define B1200 0000011
133 #define B1800 0000012
134 #define B2400 0000013
135 #define B4800 0000014
136 #define B9600 0000015
137 #define B19200 0000016
138 #define B38400 0000017
139 #define EXTA B19200
140 #define EXTB B38400
141 #define CBAUDEX 0000020
142 #define B57600 00020
143 #define B115200 00021
144 #define B230400 00022
145 #define B460800 00023
146 #define B500000 00024
147 #define B576000 00025
148 #define B921600 00026
149 #define B1000000 00027
150 #define B1152000 00030
151 #define B1500000 00031
152 #define B2000000 00032
153 #define B2500000 00033
154 #define B3000000 00034
155 #define B3500000 00035
156 #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
207 struct sgttyb {
208 char sg_ispeed;
209 char sg_ospeed;
210 char sg_erase;
211 char sg_kill;
212 short sg_flags;
215 struct tchars {
216 char t_intrc;
217 char t_quitc;
218 char t_startc;
219 char t_stopc;
220 char t_eofc;
221 char t_brkc;
224 struct ltchars {
225 char t_suspc;
226 char t_dsuspc;
227 char t_rprntc;
228 char t_flushc;
229 char t_werasc;
230 char t_lnextc;
233 /* Used for packet mode */
234 #define TIOCPKT_DATA 0
235 #define TIOCPKT_FLUSHREAD 1
236 #define TIOCPKT_FLUSHWRITE 2
237 #define TIOCPKT_STOP 4
238 #define TIOCPKT_START 8
239 #define TIOCPKT_NOSTOP 16
240 #define TIOCPKT_DOSTOP 32
242 struct winsize {
243 unsigned short ws_row;
244 unsigned short ws_col;
245 unsigned short ws_xpixel;
246 unsigned short ws_ypixel;
249 #define NCC 10
250 struct termio {
251 unsigned short c_iflag; /* input mode flags */
252 unsigned short c_oflag; /* output mode flags */
253 unsigned short c_cflag; /* control mode flags */
254 unsigned short c_lflag; /* local mode flags */
255 unsigned char c_line; /* line discipline */
256 unsigned char c_cc[NCC]; /* control characters */
259 /* c_cc characters */
260 #define _VINTR 0
261 #define _VQUIT 1
262 #define _VERASE 2
263 #define _VKILL 3
264 #define _VEOF 4
265 #define _VMIN 5
266 #define _VEOL 6
267 #define _VTIME 7
268 #define _VEOL2 8
269 #define _VSWTC 9
271 /* modem lines */
272 #define TIOCM_LE 0x001
273 #define TIOCM_DTR 0x002
274 #define TIOCM_RTS 0x004
275 #define TIOCM_ST 0x008
276 #define TIOCM_SR 0x010
277 #define TIOCM_CTS 0x020
278 #define TIOCM_CAR 0x040
279 #define TIOCM_RNG 0x080
280 #define TIOCM_DSR 0x100
281 #define TIOCM_CD TIOCM_CAR
282 #define TIOCM_RI TIOCM_RNG
284 /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
285 #define TIOCSER_TEMT 0x01 /* Transmitter physically empty */
287 /* line disciplines */
288 #define N_TTY 0
289 #define N_SLIP 1
290 #define N_MOUSE 2
291 #define N_PPP 3
292 #define N_STRIP 4
293 #define N_AX25 5
294 #define N_X25 6 /* X.25 async */
295 #define N_6PACK 7
296 #define N_MASC 8 /* Mobitex module */
297 #define N_R3964 9 /* Simatic R3964 module */
298 #define N_PROFIBUS_FDL 10 /* Profibus */
299 #define N_IRDA 11 /* Linux IR */
300 #define N_SMSBLOCK 12 /* SMS block mode */
301 #define N_HDLC 13 /* synchronous HDLC */
302 #define N_SYNC_PPP 14 /* synchronous PPP */
303 #define N_HCI 15 /* Bluetooth HCI UART */