Revision 99a0949b linux-user/alpha/termbits.h

b/linux-user/alpha/termbits.h
1
typedef unsigned char	target_cc_t;
2
typedef unsigned int	target_speed_t;
3
typedef unsigned int	target_tcflag_t;
1
typedef unsigned char	a_target_cc;
2
typedef unsigned int	a_target_speed;
3
typedef unsigned int	a_target_tcflag;
4 4

  
5 5
#define TARGET_NCCS 19
6 6
struct target_termios {
7
	target_tcflag_t c_iflag;		/* input mode flags */
8
	target_tcflag_t c_oflag;		/* output mode flags */
9
	target_tcflag_t c_cflag;		/* control mode flags */
10
	target_tcflag_t c_lflag;		/* local mode flags */
11
	target_cc_t c_cc[TARGET_NCCS];		/* control characters */
12
	target_cc_t c_line;			/* line discipline (== c_cc[19]) */
13
	target_speed_t c_ispeed;		/* input speed */
14
	target_speed_t c_ospeed;		/* output speed */
7
	a_target_tcflag c_iflag;		/* input mode flags */
8
	a_target_tcflag c_oflag;		/* output mode flags */
9
	a_target_tcflag c_cflag;		/* control mode flags */
10
	a_target_tcflag c_lflag;		/* local mode flags */
11
	a_target_cc c_cc[TARGET_NCCS];		/* control characters */
12
	a_target_cc c_line;			/* line discipline (== c_cc[19]) */
13
	a_target_speed c_ispeed;		/* input speed */
14
	a_target_speed c_ospeed;		/* output speed */
15 15
};
16 16

  
17 17
/* c_cc characters */

Also available in: Unified diff