1 /* termios type and macro definitions. AIX version.
2 Copyright (C) 1999, 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 # error "Never include <bits/termios.h> directly; use <termios.h> instead."
24 typedef unsigned char cc_t
;
25 typedef unsigned int speed_t
;
26 typedef unsigned int tcflag_t
;
31 tcflag_t c_iflag
; /* input mode flags */
32 tcflag_t c_oflag
; /* output mode flags */
33 tcflag_t c_cflag
; /* control mode flags */
34 tcflag_t c_lflag
; /* local mode flags */
35 cc_t c_cc
[NCCS
]; /* control characters */
55 #define VWERASE VWERSE
60 #define IGNBRK 0000001
61 #define BRKINT 0000002
62 #define IGNPAR 0000004
63 #define PARMRK 0000010
65 #define ISTRIP 0000040
73 #define IMAXBEL 0200000
81 #define ONLRET 0000040
84 #if defined __USE_MISC || defined __USE_XOPEN
85 # define CRDLY 0001400
90 # define TABDLY 0006000
95 # define BSDLY 0010000
98 # define FFDLY 0020000
101 # define NLDLY 0040000
106 #define VTDLY 0100000
110 /* c_cflag bit meaning */
112 # define CBAUD 0000017
114 #define B0 0000000 /* hang up */
123 #define B1200 0000011
124 #define B1800 0000012
125 #define B2400 0000013
126 #define B4800 0000014
127 #define B9600 0000015
128 #define B19200 0000016
129 #define B38400 0000017
134 #define CSIZE 0000060
139 #define CSTOPB 0000100
140 #define CREAD 0000200
141 #define PARENB 0000400
142 #define PARODD 0001000
143 #define HUPCL 0002000
144 #define CLOCAL 0004000
146 # define CIBAUD 000003600000 /* input baud rate (not used) */
147 # define CRTSCTS 020000000000 /* flow control */
152 #define ICANON 0000002
153 #if defined __USE_MISC || defined __USE_XOPEN
154 # define XCASE 0000004
157 #define ECHOE 0000020
158 #define ECHOK 0000040
159 #define ECHONL 0000100
160 #define NOFLSH 0000200
161 #define TOSTOP 0200000
163 # define ECHOCTL 0400000
164 # define ECHOPRT 01000000
165 # define ECHOKE 02000000
166 # define FLUSHO 004000000
167 # define PENDIN 04000000000
169 #define IEXTEN 010000000
171 /* tcflow() and TCXONC use these */
177 /* tcflush() and TCFLSH use these */
182 /* tcsetattr uses these */
188 #define _IOT_termios /* Hurd ioctl type field. */ \
189 _IOT (_IOTS (cflag_t), 4, _IOTS (cc_t), NCCS, _IOTS (speed_t), 2)