diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/kernel_rt_sigframe.h | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/sys/ucontext.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/kernel_rt_sigframe.h b/sysdeps/unix/sysv/linux/mips/kernel_rt_sigframe.h index e870b207de..8f62b575cf 100644 --- a/sysdeps/unix/sysv/linux/mips/kernel_rt_sigframe.h +++ b/sysdeps/unix/sysv/linux/mips/kernel_rt_sigframe.h @@ -6,7 +6,7 @@ typedef struct kernel_rt_sigframe uint32_t rs_ass[4]; uint32_t rs_code[2]; siginfo_t rs_info; - struct ucontext rs_uc; + ucontext_t rs_uc; uint32_t rs_altcode[8] __attribute__ ((__aligned__ (1 << 7))); } kernel_rt_sigframe_t; diff --git a/sysdeps/unix/sysv/linux/mips/sys/ucontext.h b/sysdeps/unix/sysv/linux/mips/sys/ucontext.h index 048e9a46b7..19c0ed97f0 100644 --- a/sysdeps/unix/sysv/linux/mips/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/mips/sys/ucontext.h @@ -113,10 +113,10 @@ typedef struct #undef __ctx /* Userlevel context. */ -typedef struct ucontext +typedef struct ucontext_t { unsigned long int uc_flags; - struct ucontext *uc_link; + struct ucontext_t *uc_link; stack_t uc_stack; mcontext_t uc_mcontext; sigset_t uc_sigmask; |