termbits.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ALPHA_TERMBITS_H
  2. #define _ALPHA_TERMBITS_H
  3. #include <linux/posix_types.h>
  4. typedef unsigned char cc_t;
  5. typedef unsigned int speed_t;
  6. typedef unsigned int tcflag_t;
  7. /*
  8.  * termios type and macro definitions.  Be careful about adding stuff
  9.  * to this file since it's used in GNU libc and there are strict rules
  10.  * concerning namespace pollution.
  11.  */
  12. #define NCCS 19
  13. struct termios {
  14. tcflag_t c_iflag; /* input mode flags */
  15. tcflag_t c_oflag; /* output mode flags */
  16. tcflag_t c_cflag; /* control mode flags */
  17. tcflag_t c_lflag; /* local mode flags */
  18. cc_t c_cc[NCCS]; /* control characters */
  19. cc_t c_line; /* line discipline (== c_cc[19]) */
  20. speed_t c_ispeed; /* input speed */
  21. speed_t c_ospeed; /* output speed */
  22. };
  23. /* c_cc characters */
  24. #define VEOF 0
  25. #define VEOL 1
  26. #define VEOL2 2
  27. #define VERASE 3
  28. #define VWERASE 4
  29. #define VKILL 5
  30. #define VREPRINT 6
  31. #define VSWTC 7
  32. #define VINTR 8
  33. #define VQUIT 9
  34. #define VSUSP 10
  35. #define VSTART 12
  36. #define VSTOP 13
  37. #define VLNEXT 14
  38. #define VDISCARD 15
  39. #define VMIN 16
  40. #define VTIME 17
  41. /* c_iflag bits */
  42. #define IGNBRK 0000001
  43. #define BRKINT 0000002
  44. #define IGNPAR 0000004
  45. #define PARMRK 0000010
  46. #define INPCK 0000020
  47. #define ISTRIP 0000040
  48. #define INLCR 0000100
  49. #define IGNCR 0000200
  50. #define ICRNL 0000400
  51. #define IXON 0001000
  52. #define IXOFF 0002000
  53. #if !defined(KERNEL) || defined(__USE_BSD)
  54.   /* POSIX.1 doesn't want these... */
  55. # define IXANY 0004000
  56. # define IUCLC 0010000
  57. # define IMAXBEL 0020000
  58. #endif
  59. /* c_oflag bits */
  60. #define OPOST 0000001
  61. #define ONLCR 0000002
  62. #define OLCUC 0000004
  63. #define OCRNL 0000010
  64. #define ONOCR 0000020
  65. #define ONLRET 0000040
  66. #define OFILL 00000100
  67. #define OFDEL 00000200
  68. #define NLDLY 00001400
  69. #define   NL0 00000000
  70. #define   NL1 00000400
  71. #define   NL2 00001000
  72. #define   NL3 00001400
  73. #define TABDLY 00006000
  74. #define   TAB0 00000000
  75. #define   TAB1 00002000
  76. #define   TAB2 00004000
  77. #define   TAB3 00006000
  78. #define CRDLY 00030000
  79. #define   CR0 00000000
  80. #define   CR1 00010000
  81. #define   CR2 00020000
  82. #define   CR3 00030000
  83. #define FFDLY 00040000
  84. #define   FF0 00000000
  85. #define   FF1 00040000
  86. #define BSDLY 00100000
  87. #define   BS0 00000000
  88. #define   BS1 00100000
  89. #define VTDLY 00200000
  90. #define   VT0 00000000
  91. #define   VT1 00200000
  92. #define XTABS 01000000 /* Hmm.. Linux/i386 considers this part of TABDLY.. */
  93. /* c_cflag bit meaning */
  94. #define CBAUD 0000037
  95. #define  B0 0000000 /* hang up */
  96. #define  B50 0000001
  97. #define  B75 0000002
  98. #define  B110 0000003
  99. #define  B134 0000004
  100. #define  B150 0000005
  101. #define  B200 0000006
  102. #define  B300 0000007
  103. #define  B600 0000010
  104. #define  B1200 0000011
  105. #define  B1800 0000012
  106. #define  B2400 0000013
  107. #define  B4800 0000014
  108. #define  B9600 0000015
  109. #define  B19200 0000016
  110. #define  B38400 0000017
  111. #define EXTA B19200
  112. #define EXTB B38400
  113. #define CBAUDEX 0000000
  114. #define  B57600   00020
  115. #define  B115200  00021
  116. #define  B230400  00022
  117. #define  B460800  00023
  118. #define  B500000  00024
  119. #define  B576000  00025
  120. #define  B921600  00026
  121. #define B1000000  00027
  122. #define B1152000  00030
  123. #define B1500000  00031
  124. #define B2000000  00032
  125. #define B2500000  00033
  126. #define B3000000  00034
  127. #define B3500000  00035
  128. #define B4000000  00036
  129. #define CSIZE 00001400
  130. #define   CS5 00000000
  131. #define   CS6 00000400
  132. #define   CS7 00001000
  133. #define   CS8 00001400
  134. #define CSTOPB 00002000
  135. #define CREAD 00004000
  136. #define PARENB 00010000
  137. #define PARODD 00020000
  138. #define HUPCL 00040000
  139. #define CLOCAL 00100000
  140. #define CRTSCTS   020000000000 /* flow control */
  141. /* c_lflag bits */
  142. #define ISIG 0x00000080
  143. #define ICANON 0x00000100
  144. #define XCASE 0x00004000
  145. #define ECHO 0x00000008
  146. #define ECHOE 0x00000002
  147. #define ECHOK 0x00000004
  148. #define ECHONL 0x00000010
  149. #define NOFLSH 0x80000000
  150. #define TOSTOP 0x00400000
  151. #define ECHOCTL 0x00000040
  152. #define ECHOPRT 0x00000020
  153. #define ECHOKE 0x00000001
  154. #define FLUSHO 0x00800000
  155. #define PENDIN 0x20000000
  156. #define IEXTEN 0x00000400
  157. /* Values for the ACTION argument to `tcflow'.  */
  158. #define TCOOFF 0
  159. #define TCOON 1
  160. #define TCIOFF 2
  161. #define TCION 3
  162. /* Values for the QUEUE_SELECTOR argument to `tcflush'.  */
  163. #define TCIFLUSH 0
  164. #define TCOFLUSH 1
  165. #define TCIOFLUSH 2
  166. /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'.  */
  167. #define TCSANOW 0
  168. #define TCSADRAIN 1
  169. #define TCSAFLUSH 2
  170. #endif /* _ALPHA_TERMBITS_H */