Fix target_siginfo ordering for MIPS.
Signed-off-by: Paul Brook <paul@codesourcery.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7192 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
df357f0e62
commit
3f53d546eb
@ -504,9 +504,15 @@ typedef struct {
|
||||
#define TARGET_SI_PAD_SIZE ((TARGET_SI_MAX_SIZE/sizeof(int)) - 3)
|
||||
|
||||
typedef struct target_siginfo {
|
||||
#ifdef TARGET_MIPS
|
||||
int si_signo;
|
||||
int si_code;
|
||||
int si_errno;
|
||||
#else
|
||||
int si_signo;
|
||||
int si_errno;
|
||||
int si_code;
|
||||
#endif
|
||||
|
||||
union {
|
||||
int _pad[TARGET_SI_PAD_SIZE];
|
||||
|
Loading…
Reference in New Issue
Block a user