提交 3f53d546 编写于 作者: P pbrook

Fix target_siginfo ordering for MIPS.

Signed-off-by: NPaul Brook <paul@codesourcery.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7192 c046a42c-6fe2-441c-8c8c-71466251a162
上级 df357f0e
......@@ -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];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册