1
0
Fork 0
alistair23-linux/arch/arm/kernel/signal.h

12 lines
165 B
C

#include <asm/ucontext.h>
struct sigframe {
struct ucontext uc;
unsigned long retcode[4];
};
struct rt_sigframe {
struct siginfo info;
struct sigframe sig;
};