xref: /openbmc/linux/arch/arm/kernel/signal.h (revision 83dc1d99)
15c165953SNicolas Pitre #include <asm/ucontext.h>
25c165953SNicolas Pitre 
35c165953SNicolas Pitre struct sigframe {
45c165953SNicolas Pitre 	struct ucontext uc;
55c165953SNicolas Pitre 	unsigned long retcode[4];
65c165953SNicolas Pitre };
75c165953SNicolas Pitre 
85c165953SNicolas Pitre struct rt_sigframe {
95c165953SNicolas Pitre 	struct siginfo info;
105c165953SNicolas Pitre 	struct sigframe sig;
115c165953SNicolas Pitre };
1283dc1d99SBen Dooks (Codethink) 
1383dc1d99SBen Dooks (Codethink) extern struct page *get_signal_page(void);
14