]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/powerpc/bits/termios.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / powerpc / bits / termios.h
1 /* Copyright (C) 1997-2016 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
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.
8
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.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
17
18 #ifndef _TERMIOS_H
19 # error "Never include <bits/termios.h> directly; use <termios.h> instead."
20 #endif
21
22 typedef unsigned char cc_t;
23 typedef unsigned int speed_t;
24 typedef unsigned int tcflag_t;
25
26 /*
27 * termios type and macro definitions. Be careful about adding stuff
28 * to this file since it's used in GNU libc and there are strict rules
29 * concerning namespace pollution.
30 */
31
32 #define NCCS 32
33 struct termios {
34 tcflag_t c_iflag; /* input mode flags */
35 tcflag_t c_oflag; /* output mode flags */
36 tcflag_t c_cflag; /* control mode flags */
37 tcflag_t c_lflag; /* local mode flags */
38 cc_t c_line; /* line discipline (== c_cc[19]) */
39 cc_t c_cc[NCCS]; /* control characters */
40 speed_t c_ispeed; /* input speed */
41 speed_t c_ospeed; /* output speed */
42 #define _HAVE_STRUCT_TERMIOS_C_ISPEED 1
43 #define _HAVE_STRUCT_TERMIOS_C_OSPEED 1
44 };
45
46 /* c_cc characters */
47 #define VINTR 0
48 #define VQUIT 1
49 #define VERASE 2
50 #define VKILL 3
51 #define VEOF 4
52 #define VMIN 5
53 #define VEOL 6
54 #define VTIME 7
55 #define VEOL2 8
56 #define VSWTC 9
57
58 #define VWERASE 10
59 #define VREPRINT 11
60 #define VSUSP 12
61 #define VSTART 13
62 #define VSTOP 14
63 #define VLNEXT 15
64 #define VDISCARD 16
65
66 /* c_iflag bits */
67 #define IGNBRK 0000001
68 #define BRKINT 0000002
69 #define IGNPAR 0000004
70 #define PARMRK 0000010
71 #define INPCK 0000020
72 #define ISTRIP 0000040
73 #define INLCR 0000100
74 #define IGNCR 0000200
75 #define ICRNL 0000400
76 #define IXON 0001000
77 #define IXOFF 0002000
78 #define IXANY 0004000
79 #define IUCLC 0010000
80 #define IMAXBEL 0020000
81 #define IUTF8 0040000
82
83 /* c_oflag bits */
84 #define OPOST 0000001
85 #define ONLCR 0000002
86 #define OLCUC 0000004
87
88 #define OCRNL 0000010
89 #define ONOCR 0000020
90 #define ONLRET 0000040
91
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 # if defined __USE_MISC
99 # define NL2 00001000
100 # define NL3 00001400
101 # endif
102 # define TABDLY 00006000
103 # define TAB0 00000000
104 # define TAB1 00002000
105 # define TAB2 00004000
106 # define TAB3 00006000
107 # define CRDLY 00030000
108 # define CR0 00000000
109 # define CR1 00010000
110 # define CR2 00020000
111 # define CR3 00030000
112 # define FFDLY 00040000
113 # define FF0 00000000
114 # define FF1 00040000
115 # define BSDLY 00100000
116 # define BS0 00000000
117 # define BS1 00100000
118 #endif
119 #define VTDLY 00200000
120 #define VT0 00000000
121 #define VT1 00200000
122
123 #ifdef __USE_MISC
124 # define XTABS 00006000
125 #endif
126
127 /* c_cflag bit meaning */
128 #ifdef __USE_MISC
129 # define CBAUD 0000377
130 #endif
131 #define B0 0000000 /* hang up */
132 #define B50 0000001
133 #define B75 0000002
134 #define B110 0000003
135 #define B134 0000004
136 #define B150 0000005
137 #define B200 0000006
138 #define B300 0000007
139 #define B600 0000010
140 #define B1200 0000011
141 #define B1800 0000012
142 #define B2400 0000013
143 #define B4800 0000014
144 #define B9600 0000015
145 #define B19200 0000016
146 #define B38400 0000017
147 #ifdef __USE_MISC
148 # define EXTA B19200
149 # define EXTB B38400
150 # define CBAUDEX 0000020
151 #endif
152 #define B57600 00020
153 #define B115200 00021
154 #define B230400 00022
155 #define B460800 00023
156 #define B500000 00024
157 #define B576000 00025
158 #define B921600 00026
159 #define B1000000 00027
160 #define B1152000 00030
161 #define B1500000 00031
162 #define B2000000 00032
163 #define B2500000 00033
164 #define B3000000 00034
165 #define B3500000 00035
166 #define B4000000 00036
167 #define __MAX_BAUD B4000000
168
169 #define CSIZE 00001400
170 #define CS5 00000000
171 #define CS6 00000400
172 #define CS7 00001000
173 #define CS8 00001400
174
175 #define CSTOPB 00002000
176 #define CREAD 00004000
177 #define PARENB 00010000
178 #define PARODD 00020000
179 #define HUPCL 00040000
180
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
186
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
207 #ifdef __USE_MISC
208 # define EXTPROC 0x10000000
209 #endif
210
211 /* Values for the ACTION argument to `tcflow'. */
212 #define TCOOFF 0
213 #define TCOON 1
214 #define TCIOFF 2
215 #define TCION 3
216
217 /* Values for the QUEUE_SELECTOR argument to `tcflush'. */
218 #define TCIFLUSH 0
219 #define TCOFLUSH 1
220 #define TCIOFLUSH 2
221
222 /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
223 #define TCSANOW 0
224 #define TCSADRAIN 1
225 #define TCSAFLUSH 2
226
227 #ifdef __USE_MISC
228
229 struct sgttyb {
230 char sg_ispeed;
231 char sg_ospeed;
232 char sg_erase;
233 char sg_kill;
234 short sg_flags;
235 };
236
237 struct tchars {
238 char t_intrc;
239 char t_quitc;
240 char t_startc;
241 char t_stopc;
242 char t_eofc;
243 char t_brkc;
244 };
245
246 struct ltchars {
247 char t_suspc;
248 char t_dsuspc;
249 char t_rprntc;
250 char t_flushc;
251 char t_werasc;
252 char t_lnextc;
253 };
254
255 /* Used for packet mode */
256 #define TIOCPKT_DATA 0
257 #define TIOCPKT_FLUSHREAD 1
258 #define TIOCPKT_FLUSHWRITE 2
259 #define TIOCPKT_STOP 4
260 #define TIOCPKT_START 8
261 #define TIOCPKT_NOSTOP 16
262 #define TIOCPKT_DOSTOP 32
263
264 /* c_cc characters */
265 #define _VINTR 0
266 #define _VQUIT 1
267 #define _VERASE 2
268 #define _VKILL 3
269 #define _VEOF 4
270 #define _VMIN 5
271 #define _VEOL 6
272 #define _VTIME 7
273 #define _VEOL2 8
274 #define _VSWTC 9
275
276 /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
277 #define TIOCSER_TEMT 0x01 /* Transmitter physically empty */
278
279 #endif /* __USE_MISC */