diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-23 23:27:46 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-23 23:27:46 +0000 |
commit | f05d35d26da3bcec318e23b943223f83d5e90add (patch) | |
tree | 007d51eb79f3756bfa698d834eb96dc3eb25e7d2 /linux-user/i386/termbits.h | |
parent | b9a02beda2301f91e2d90e329e9a9c0aae3fbb83 (diff) |
Sync termbits.h with current Linux kernel.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3215 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/i386/termbits.h')
-rw-r--r-- | linux-user/i386/termbits.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/linux-user/i386/termbits.h b/linux-user/i386/termbits.h index adff80243e..4acd2bda01 100644 --- a/linux-user/i386/termbits.h +++ b/linux-user/i386/termbits.h @@ -26,6 +26,7 @@ struct target_termios { #define TARGET_IXANY 0004000 #define TARGET_IXOFF 0010000 #define TARGET_IMAXBEL 0020000 +#define TARGET_IUTF8 0040000 /* c_oflag bits */ #define TARGET_OPOST 0000001 @@ -96,8 +97,20 @@ struct target_termios { #define TARGET_B115200 0010002 #define TARGET_B230400 0010003 #define TARGET_B460800 0010004 +#define TARGET_B500000 0010005 +#define TARGET_B576000 0010006 +#define TARGET_B921600 0010007 +#define TARGET_B1000000 0010010 +#define TARGET_B1152000 0010011 +#define TARGET_B1500000 0010012 +#define TARGET_B2000000 0010013 +#define TARGET_B2500000 0010014 +#define TARGET_B3000000 0010015 +#define TARGET_B3500000 0010016 +#define TARGET_B4000000 0010017 #define TARGET_CIBAUD 002003600000 /* input baud rate (not used) */ -#define TARGET_CRTSCTS 020000000000 /* flow control */ +#define TARGET_CMSPAR 010000000000 /* mark or space (stick) parity */ +#define TARGET_CRTSCTS 020000000000 /* flow control */ /* c_lflag bits */ #define TARGET_ISIG 0000001 |