ubuntu-linux-kernel/arch/arm/kernel/signal.h

12 lines
165 B
C
Raw Normal View History

2024-04-01 15:06:58 +00:00
#include <asm/ucontext.h>
struct sigframe {
struct ucontext uc;
unsigned long retcode[4];
};
struct rt_sigframe {
struct siginfo info;
struct sigframe sig;
};