xref: /linux/arch/arm/kernel/signal.h (revision ade994f4f6c8c3ef4c3bfc2d02166262fb9d089c)
1 #include <asm/ucontext.h>
2 
3 struct sigframe {
4 	struct ucontext uc;
5 	unsigned long retcode[4];
6 };
7 
8 struct rt_sigframe {
9 	struct siginfo info;
10 	struct sigframe sig;
11 };
12