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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_ALPHA_IOCTLS_H
  2. #define _ASM_ALPHA_IOCTLS_H
  3. #include <asm/ioctl.h>
  4. #define FIOCLEX _IO('f', 1)
  5. #define FIONCLEX _IO('f', 2)
  6. #define FIOASYNC _IOW('f', 125, int)
  7. #define FIONBIO _IOW('f', 126, int)
  8. #define FIONREAD _IOR('f', 127, int)
  9. #define TIOCINQ FIONREAD
  10. #define TIOCGETP _IOR('t', 8, struct sgttyb)
  11. #define TIOCSETP _IOW('t', 9, struct sgttyb)
  12. #define TIOCSETN _IOW('t', 10, struct sgttyb) /* TIOCSETP wo flush */
  13. #define TIOCSETC _IOW('t', 17, struct tchars)
  14. #define TIOCGETC _IOR('t', 18, struct tchars)
  15. #define TCGETS _IOR('t', 19, struct termios)
  16. #define TCSETS _IOW('t', 20, struct termios)
  17. #define TCSETSW _IOW('t', 21, struct termios)
  18. #define TCSETSF _IOW('t', 22, struct termios)
  19. #define TCGETA _IOR('t', 23, struct termio)
  20. #define TCSETA _IOW('t', 24, struct termio)
  21. #define TCSETAW _IOW('t', 25, struct termio)
  22. #define TCSETAF _IOW('t', 28, struct termio)
  23. #define TCSBRK _IO('t', 29)
  24. #define TCXONC _IO('t', 30)
  25. #define TCFLSH _IO('t', 31)
  26. #define TIOCSWINSZ _IOW('t', 103, struct winsize)
  27. #define TIOCGWINSZ _IOR('t', 104, struct winsize)
  28. #define TIOCSTART _IO('t', 110) /* start output, like ^Q */
  29. #define TIOCSTOP _IO('t', 111) /* stop output, like ^S */
  30. #define TIOCOUTQ        _IOR('t', 115, int)     /* output queue size */
  31. #define TIOCGLTC _IOR('t', 116, struct ltchars)
  32. #define TIOCSLTC _IOW('t', 117, struct ltchars)
  33. #define TIOCSPGRP _IOW('t', 118, int)
  34. #define TIOCGPGRP _IOR('t', 119, int)
  35. #define TIOCEXCL 0x540C
  36. #define TIOCNXCL 0x540D
  37. #define TIOCSCTTY 0x540E
  38. #define TIOCSTI 0x5412
  39. #define TIOCMGET 0x5415
  40. #define TIOCMBIS 0x5416
  41. #define TIOCMBIC 0x5417
  42. #define TIOCMSET 0x5418
  43. # define TIOCM_LE 0x001
  44. # define TIOCM_DTR 0x002
  45. # define TIOCM_RTS 0x004
  46. # define TIOCM_ST 0x008
  47. # define TIOCM_SR 0x010
  48. # define TIOCM_CTS 0x020
  49. # define TIOCM_CAR 0x040
  50. # define TIOCM_RNG 0x080
  51. # define TIOCM_DSR 0x100
  52. # define TIOCM_CD TIOCM_CAR
  53. # define TIOCM_RI TIOCM_RNG
  54. # define TIOCM_OUT1 0x2000
  55. # define TIOCM_OUT2 0x4000
  56. # define TIOCM_LOOP 0x8000
  57. #define TIOCM_MODEM_BITS       TIOCM_OUT2      /* IRDA support */
  58. #define TIOCGSOFTCAR 0x5419
  59. #define TIOCSSOFTCAR 0x541A
  60. #define TIOCLINUX 0x541C
  61. #define TIOCCONS 0x541D
  62. #define TIOCGSERIAL 0x541E
  63. #define TIOCSSERIAL 0x541F
  64. #define TIOCPKT 0x5420
  65. # define TIOCPKT_DATA  0
  66. # define TIOCPKT_FLUSHREAD  1
  67. # define TIOCPKT_FLUSHWRITE  2
  68. # define TIOCPKT_STOP  4
  69. # define TIOCPKT_START  8
  70. # define TIOCPKT_NOSTOP 16
  71. # define TIOCPKT_DOSTOP 32
  72. #define TIOCNOTTY 0x5422
  73. #define TIOCSETD 0x5423
  74. #define TIOCGETD 0x5424
  75. #define TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak() */
  76. #define TIOCTTYGSTRUCT 0x5426  /* For debugging only */
  77. #define TIOCSBRK 0x5427  /* BSD compatibility */
  78. #define TIOCCBRK 0x5428  /* BSD compatibility */
  79. #define TIOCGSID 0x5429  /* Return the session ID of FD */
  80. #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */
  81. #define TIOCSPTLCK _IOW('T',0x31, int)  /* Lock/unlock Pty */
  82. #define TIOCSERCONFIG 0x5453
  83. #define TIOCSERGWILD 0x5454
  84. #define TIOCSERSWILD 0x5455
  85. #define TIOCGLCKTRMIOS 0x5456
  86. #define TIOCSLCKTRMIOS 0x5457
  87. #define TIOCSERGSTRUCT 0x5458 /* For debugging only */
  88. #define TIOCSERGETLSR   0x5459 /* Get line status register */
  89.   /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
  90. # define TIOCSER_TEMT    0x01 /* Transmitter physically empty */
  91. #define TIOCSERGETMULTI 0x545A /* Get multiport config  */
  92. #define TIOCSERSETMULTI 0x545B /* Set multiport config */
  93. #define TIOCMIWAIT 0x545C /* wait for a change on serial input line(s) */
  94. #define TIOCGICOUNT 0x545D /* read serial port inline interrupt counts */
  95. #define TIOCGHAYESESP 0x545E  /* Get Hayes ESP configuration */
  96. #define TIOCSHAYESESP 0x545F  /* Set Hayes ESP configuration */
  97. #endif /* _ASM_ALPHA_IOCTLS_H */