mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
Revert "Get rid of _t suffix"
In the very least, a change like this requires discussion on the list.
The naming convention is goofy and it causes a massive merge problem. Something
like this _must_ be presented on the list first so people can provide input
and cope with it.
This reverts commit 99a0949b72
.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
99a0949b72
commit
c227f0995e
316 changed files with 3332 additions and 3325 deletions
|
@ -9,7 +9,7 @@ typedef struct target_sigaltstack {
|
|||
abi_ulong ss_sp;
|
||||
abi_long ss_flags;
|
||||
abi_ulong ss_size;
|
||||
} a_target_stack;
|
||||
} target_stack_t;
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
#define TARGET_NCCS 19
|
||||
|
||||
typedef unsigned char a_target_cc;
|
||||
typedef unsigned int a_target_speed;
|
||||
typedef unsigned int a_target_tcflag;
|
||||
typedef unsigned char target_cc_t;
|
||||
typedef unsigned int target_speed_t;
|
||||
typedef unsigned int target_tcflag_t;
|
||||
struct target_termios {
|
||||
a_target_tcflag c_iflag; /* input mode flags */
|
||||
a_target_tcflag c_oflag; /* output mode flags */
|
||||
a_target_tcflag c_cflag; /* control mode flags */
|
||||
a_target_tcflag c_lflag; /* local mode flags */
|
||||
a_target_cc c_line; /* line discipline */
|
||||
a_target_cc c_cc[TARGET_NCCS]; /* control characters */
|
||||
target_tcflag_t c_iflag; /* input mode flags */
|
||||
target_tcflag_t c_oflag; /* output mode flags */
|
||||
target_tcflag_t c_cflag; /* control mode flags */
|
||||
target_tcflag_t c_lflag; /* local mode flags */
|
||||
target_cc_t c_line; /* line discipline */
|
||||
target_cc_t c_cc[TARGET_NCCS]; /* control characters */
|
||||
};
|
||||
|
||||
/* c_cc characters */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue