• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * This header was generated from the Linux kernel headers by update_headers.py,
3  * to provide necessary information from kernel to userspace, such as constants,
4  * structures, and macros, and thus, contains no copyrightable information.
5  */
6 #ifndef _UAPI_ASM_GENERIC_TERMIOS_H
7 #define _UAPI_ASM_GENERIC_TERMIOS_H
8 #include <asm/termbits.h>
9 #include <asm/ioctls.h>
10 struct winsize {
11 	unsigned short ws_row;
12 	unsigned short ws_col;
13 	unsigned short ws_xpixel;
14 	unsigned short ws_ypixel;
15 };
16 #define NCC 8
17 struct termio {
18 	unsigned short c_iflag;
19 	unsigned short c_oflag;
20 	unsigned short c_cflag;
21 	unsigned short c_lflag;
22 	unsigned char c_line;
23 	unsigned char c_cc[NCC];
24 };
25 #define TIOCM_LE	0x001
26 #define TIOCM_DTR	0x002
27 #define TIOCM_RTS	0x004
28 #define TIOCM_ST	0x008
29 #define TIOCM_SR	0x010
30 #define TIOCM_CTS	0x020
31 #define TIOCM_CAR	0x040
32 #define TIOCM_RNG	0x080
33 #define TIOCM_DSR	0x100
34 #define TIOCM_CD	TIOCM_CAR
35 #define TIOCM_RI	TIOCM_RNG
36 #define TIOCM_OUT1	0x2000
37 #define TIOCM_OUT2	0x4000
38 #define TIOCM_LOOP	0x8000
39 #endif
40