From 4fad9343fcc51e2f7f8047a49ef76df57efa3ac0 Mon Sep 17 00:00:00 2001 From: pbrook Date: Tue, 21 Apr 2009 00:59:40 +0000 Subject: [PATCH] Fix target_siginfo ordering for MIPS. Signed-off-by: Paul Brook git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7192 c046a42c-6fe2-441c-8c8c-71466251a162 --- linux-user/syscall_defs.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index a373690..7f0b0df 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -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]; -- 2.7.4