mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
elfload: use abi_int/uint instead of target_int/uint
The alignment is a characteristic of the ABI, not the CPU. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
1ddd592fd3
commit
f8fd4fc4cd
4 changed files with 16 additions and 12 deletions
|
@ -113,10 +113,10 @@ typedef abi_ulong target_elf_greg_t;
|
|||
typedef abi_ushort target_uid_t;
|
||||
typedef abi_ushort target_gid_t;
|
||||
#else
|
||||
typedef target_uint target_uid_t;
|
||||
typedef target_uint target_gid_t;
|
||||
typedef abi_uint target_uid_t;
|
||||
typedef abi_uint target_gid_t;
|
||||
#endif
|
||||
typedef target_int target_pid_t;
|
||||
typedef abi_int target_pid_t;
|
||||
|
||||
#ifdef TARGET_I386
|
||||
|
||||
|
@ -2109,9 +2109,9 @@ struct memelfnote {
|
|||
};
|
||||
|
||||
struct target_elf_siginfo {
|
||||
target_int si_signo; /* signal number */
|
||||
target_int si_code; /* extra code */
|
||||
target_int si_errno; /* errno */
|
||||
abi_int si_signo; /* signal number */
|
||||
abi_int si_code; /* extra code */
|
||||
abi_int si_errno; /* errno */
|
||||
};
|
||||
|
||||
struct target_elf_prstatus {
|
||||
|
@ -2128,7 +2128,7 @@ struct target_elf_prstatus {
|
|||
struct target_timeval pr_cutime; /* XXX Cumulative user time */
|
||||
struct target_timeval pr_cstime; /* XXX Cumulative system time */
|
||||
target_elf_gregset_t pr_reg; /* GP registers */
|
||||
target_int pr_fpvalid; /* XXX */
|
||||
abi_int pr_fpvalid; /* XXX */
|
||||
};
|
||||
|
||||
#define ELF_PRARGSZ (80) /* Number of chars for args */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue