mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-03 10:21:05 +00:00
ff3475331e
* sysdeps/unix/sysv/linux/mips/getcontext.S: New file. * sysdeps/unix/sysv/linux/mips/makecontext.S: New file. * sysdeps/unix/sysv/linux/mips/setcontext.S: New file. * sysdeps/unix/sysv/linux/mips/swapcontext.S: New file. * sysdeps/unix/sysv/linux/mips/sys/ucontext.h (mcontext_t): Update comment. * sysdeps/unix/sysv/linux/mips/kernel_rt_sigframe.h: New file. * sysdeps/unix/sysv/linux/mips/ucontext_i.sym: New file. * sysdeps/unix/sysv/linux/mips/Makefile (gen-as-const-headers): Add ucontext_i.sym.
11 lines
271 B
C
11 lines
271 B
C
/* Linux kernel RT signal frame. */
|
|
typedef struct kernel_rt_sigframe
|
|
{
|
|
uint32_t rs_ass[4];
|
|
uint32_t rs_code[2];
|
|
struct siginfo rs_info;
|
|
struct ucontext rs_uc;
|
|
uint32_t rs_altcode[8] __attribute__ ((__aligned__ (1 << 7)));
|
|
}
|
|
kernel_rt_sigframe_t;
|