termbits.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_TERMBITS_H
  2. #define _ASM_IA64_TERMBITS_H
  3. /*
  4.  * Copyright (C) 1999 Hewlett-Packard Co
  5.  * Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>
  6.  *
  7.  * 99/01/28 Added new baudrates
  8.  */
  9. #include <linux/posix_types.h>
  10. typedef unsigned char cc_t;
  11. typedef unsigned int speed_t;
  12. typedef unsigned int tcflag_t;
  13. #define NCCS 19
  14. struct termios {
  15. tcflag_t c_iflag; /* input mode flags */
  16. tcflag_t c_oflag; /* output mode flags */
  17. tcflag_t c_cflag; /* control mode flags */
  18. tcflag_t c_lflag; /* local mode flags */
  19. cc_t c_line; /* line discipline */
  20. cc_t c_cc[NCCS]; /* control characters */
  21. };
  22. /* c_cc characters */
  23. #define VINTR 0
  24. #define VQUIT 1
  25. #define VERASE 2
  26. #define VKILL 3
  27. #define VEOF 4
  28. #define VTIME 5
  29. #define VMIN 6
  30. #define VSWTC 7
  31. #define VSTART 8
  32. #define VSTOP 9
  33. #define VSUSP 10
  34. #define VEOL 11
  35. #define VREPRINT 12
  36. #define VDISCARD 13
  37. #define VWERASE 14
  38. #define VLNEXT 15
  39. #define VEOL2 16
  40. /* c_iflag bits */
  41. #define IGNBRK 0000001
  42. #define BRKINT 0000002
  43. #define IGNPAR 0000004
  44. #define PARMRK 0000010
  45. #define INPCK 0000020
  46. #define ISTRIP 0000040
  47. #define INLCR 0000100
  48. #define IGNCR 0000200
  49. #define ICRNL 0000400
  50. #define IUCLC 0001000
  51. #define IXON 0002000
  52. #define IXANY 0004000
  53. #define IXOFF 0010000
  54. #define IMAXBEL 0020000
  55. /* c_oflag bits */
  56. #define OPOST 0000001
  57. #define OLCUC 0000002
  58. #define ONLCR 0000004
  59. #define OCRNL 0000010
  60. #define ONOCR 0000020
  61. #define ONLRET 0000040
  62. #define OFILL 0000100
  63. #define OFDEL 0000200
  64. #define NLDLY 0000400
  65. #define   NL0 0000000
  66. #define   NL1 0000400
  67. #define CRDLY 0003000
  68. #define   CR0 0000000
  69. #define   CR1 0001000
  70. #define   CR2 0002000
  71. #define   CR3 0003000
  72. #define TABDLY 0014000
  73. #define   TAB0 0000000
  74. #define   TAB1 0004000
  75. #define   TAB2 0010000
  76. #define   TAB3 0014000
  77. #define   XTABS 0014000
  78. #define BSDLY 0020000
  79. #define   BS0 0000000
  80. #define   BS1 0020000
  81. #define VTDLY 0040000
  82. #define   VT0 0000000
  83. #define   VT1 0040000
  84. #define FFDLY 0100000
  85. #define   FF0 0000000
  86. #define   FF1 0100000
  87. /* c_cflag bit meaning */
  88. #define CBAUD 0010017
  89. #define  B0 0000000 /* hang up */
  90. #define  B50 0000001
  91. #define  B75 0000002
  92. #define  B110 0000003
  93. #define  B134 0000004
  94. #define  B150 0000005
  95. #define  B200 0000006
  96. #define  B300 0000007
  97. #define  B600 0000010
  98. #define  B1200 0000011
  99. #define  B1800 0000012
  100. #define  B2400 0000013
  101. #define  B4800 0000014
  102. #define  B9600 0000015
  103. #define  B19200 0000016
  104. #define  B38400 0000017
  105. #define EXTA B19200
  106. #define EXTB B38400
  107. #define CSIZE 0000060
  108. #define   CS5 0000000
  109. #define   CS6 0000020
  110. #define   CS7 0000040
  111. #define   CS8 0000060
  112. #define CSTOPB 0000100
  113. #define CREAD 0000200
  114. #define PARENB 0000400
  115. #define PARODD 0001000
  116. #define HUPCL 0002000
  117. #define CLOCAL 0004000
  118. #define CBAUDEX 0010000
  119. #define    B57600 0010001
  120. #define   B115200 0010002
  121. #define   B230400 0010003
  122. #define   B460800 0010004
  123. #define   B500000 0010005
  124. #define   B576000 0010006
  125. #define   B921600 0010007
  126. #define  B1000000 0010010
  127. #define  B1152000 0010011
  128. #define  B1500000 0010012
  129. #define  B2000000 0010013
  130. #define  B2500000 0010014
  131. #define  B3000000 0010015
  132. #define  B3500000 0010016
  133. #define  B4000000 0010017
  134. #define CIBAUD   002003600000 /* input baud rate (not used) */
  135. #define CMSPAR   010000000000 /* mark or space (stick) parity */
  136. #define CRTSCTS   020000000000 /* flow control */
  137. /* c_lflag bits */
  138. #define ISIG 0000001
  139. #define ICANON 0000002
  140. #define XCASE 0000004
  141. #define ECHO 0000010
  142. #define ECHOE 0000020
  143. #define ECHOK 0000040
  144. #define ECHONL 0000100
  145. #define NOFLSH 0000200
  146. #define TOSTOP 0000400
  147. #define ECHOCTL 0001000
  148. #define ECHOPRT 0002000
  149. #define ECHOKE 0004000
  150. #define FLUSHO 0010000
  151. #define PENDIN 0040000
  152. #define IEXTEN 0100000
  153. /* tcflow() and TCXONC use these */
  154. #define TCOOFF 0
  155. #define TCOON 1
  156. #define TCIOFF 2
  157. #define TCION 3
  158. /* tcflush() and TCFLSH use these */
  159. #define TCIFLUSH 0
  160. #define TCOFLUSH 1
  161. #define TCIOFLUSH 2
  162. /* tcsetattr uses these */
  163. #define TCSANOW 0
  164. #define TCSADRAIN 1
  165. #define TCSAFLUSH 2
  166. #endif /* _ASM_IA64_TERMBITS_H */