Use siginfo_t instead of struct siginfo for MIPS kernel_rt_sigframe.

This commit is contained in:
Joseph Myers 2012-04-26 19:20:45 +00:00
parent 95b28a6cc8
commit 8dc2363998
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-04-26 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/mips/kernel_rt_sigframe.h (struct
kernel_rt_sigframe): Use siginfo_t instead of struct siginfo.
2012-04-24 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/mips/fork.S: Remove file.

View File

@ -3,7 +3,7 @@ typedef struct kernel_rt_sigframe
{
uint32_t rs_ass[4];
uint32_t rs_code[2];
struct siginfo rs_info;
siginfo_t rs_info;
struct ucontext rs_uc;
uint32_t rs_altcode[8] __attribute__ ((__aligned__ (1 << 7)));
}