termios.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* termios type and macro definitions. Linux version.
  2. Copyright (C) 1993, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
  3. 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 Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If not,
  14. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA. */
  16. #ifndef _TERMIOS_H
  17. # error "Never include <bits/termios.h> directly; use <termios.h> instead."
  18. #endif
  19. typedef unsigned char cc_t;
  20. typedef unsigned int speed_t;
  21. typedef unsigned int tcflag_t;
  22. /* note: this is fixed to be the same as the kernel, not glibc */
  23. #define NCCS 19
  24. struct termios
  25. {
  26. tcflag_t c_iflag; /* input mode flags */
  27. tcflag_t c_oflag; /* output mode flags */
  28. tcflag_t c_cflag; /* control mode flags */
  29. tcflag_t c_lflag; /* local mode flags */
  30. cc_t c_cc[NCCS]; /* control characters */
  31. cc_t c_line; /* line discipline */
  32. speed_t c_ispeed; /* input speed */
  33. speed_t c_ospeed; /* output speed */
  34. };
  35. /* c_cc characters */
  36. #define VINTR 0
  37. #define VQUIT 1
  38. #define VERASE 2
  39. #define VKILL 3
  40. #define VEOF 4
  41. #define VTIME 5
  42. #define VMIN 6
  43. #define VSWTC 7
  44. #define VSTART 8
  45. #define VSTOP 9
  46. #define VSUSP 10
  47. #define VEOL 11
  48. #define VREPRINT 12
  49. #define VDISCARD 13
  50. #define VWERASE 14
  51. #define VLNEXT 15
  52. #define VEOL2 16
  53. /* c_iflag bits */
  54. #define IGNBRK 0000001
  55. #define BRKINT 0000002
  56. #define IGNPAR 0000004
  57. #define PARMRK 0000010
  58. #define INPCK 0000020
  59. #define ISTRIP 0000040
  60. #define INLCR 0000100
  61. #define IGNCR 0000200
  62. #define ICRNL 0000400
  63. #define IUCLC 0001000
  64. #define IXON 0002000
  65. #define IXANY 0004000
  66. #define IXOFF 0010000
  67. #define IMAXBEL 0020000
  68. /* c_oflag bits */
  69. #define OPOST 0000001
  70. #define OLCUC 0000002
  71. #define ONLCR 0000004
  72. #define OCRNL 0000010
  73. #define ONOCR 0000020
  74. #define ONLRET 0000040
  75. #define OFILL 0000100
  76. #define OFDEL 0000200
  77. #if defined __USE_MISC || defined __USE_XOPEN
  78. # define NLDLY 0000400
  79. # define NL0 0000000
  80. # define NL1 0000400
  81. # define CRDLY 0003000
  82. # define CR0 0000000
  83. # define CR1 0001000
  84. # define CR2 0002000
  85. # define CR3 0003000
  86. # define TABDLY 0014000
  87. # define TAB0 0000000
  88. # define TAB1 0004000
  89. # define TAB2 0010000
  90. # define TAB3 0014000
  91. # define BSDLY 0020000
  92. # define BS0 0000000
  93. # define BS1 0020000
  94. # define FFDLY 0100000
  95. # define FF0 0000000
  96. # define FF1 0100000
  97. #endif
  98. #define VTDLY 0040000
  99. #define VT0 0000000
  100. #define VT1 0040000
  101. #ifdef __USE_MISC
  102. # define XTABS 0014000
  103. #endif
  104. /* c_cflag bit meaning */
  105. #ifdef __USE_MISC
  106. # define CBAUD 0010017
  107. #endif
  108. #define B0 0000000 /* hang up */
  109. #define B50 0000001
  110. #define B75 0000002
  111. #define B110 0000003
  112. #define B134 0000004
  113. #define B150 0000005
  114. #define B200 0000006
  115. #define B300 0000007
  116. #define B600 0000010
  117. #define B1200 0000011
  118. #define B1800 0000012
  119. #define B2400 0000013
  120. #define B4800 0000014
  121. #define B9600 0000015
  122. #define B19200 0000016
  123. #define B38400 0000017
  124. #ifdef __USE_MISC
  125. # define EXTA B19200
  126. # define EXTB B38400
  127. #endif
  128. #define CSIZE 0000060
  129. #define CS5 0000000
  130. #define CS6 0000020
  131. #define CS7 0000040
  132. #define CS8 0000060
  133. #define CSTOPB 0000100
  134. #define CREAD 0000200
  135. #define PARENB 0000400
  136. #define PARODD 0001000
  137. #define HUPCL 0002000
  138. #define CLOCAL 0004000
  139. #ifdef __USE_MISC
  140. # define CBAUDEX 0010000
  141. #endif
  142. #define B57600 0010001
  143. #define B115200 0010002
  144. #define B230400 0010003
  145. #define B460800 0010004
  146. #define B500000 0010005
  147. #define B576000 0010006
  148. #define B921600 0010007
  149. #define B1000000 0010010
  150. #define B1152000 0010011
  151. #define B1500000 0010012
  152. #define B2000000 0010013
  153. #define B2500000 0010014
  154. #define B3000000 0010015
  155. #define B3500000 0010016
  156. #define B4000000 0010017
  157. #ifdef __USE_MISC
  158. # define CIBAUD 002003600000 /* input baud rate (not used) */
  159. # define CRTSCTS 020000000000 /* flow control */
  160. #endif
  161. /* c_lflag bits */
  162. #define ISIG 0000001
  163. #define ICANON 0000002
  164. #if defined __USE_MISC || defined __USE_XOPEN
  165. # define XCASE 0000004
  166. #endif
  167. #define ECHO 0000010
  168. #define ECHOE 0000020
  169. #define ECHOK 0000040
  170. #define ECHONL 0000100
  171. #define NOFLSH 0000200
  172. #define TOSTOP 0000400
  173. #ifdef __USE_MISC
  174. # define ECHOCTL 0001000
  175. # define ECHOPRT 0002000
  176. # define ECHOKE 0004000
  177. # define FLUSHO 0010000
  178. # define PENDIN 0040000
  179. #endif
  180. #define IEXTEN 0100000
  181. /* tcflow() and TCXONC use these */
  182. #define TCOOFF 0
  183. #define TCOON 1
  184. #define TCIOFF 2
  185. #define TCION 3
  186. /* tcflush() and TCFLSH use these */
  187. #define TCIFLUSH 0
  188. #define TCOFLUSH 1
  189. #define TCIOFLUSH 2
  190. /* tcsetattr uses these */
  191. #define TCSANOW 0
  192. #define TCSADRAIN 1
  193. #define TCSAFLUSH 2
  194. #define _IOT_termios /* Hurd ioctl type field. */ \
  195. _IOT (_IOTS (cflag_t), 4, _IOTS (cc_t), NCCS, _IOTS (speed_t), 2)