1 #ifndef _UAPI_ASM_SIGNAL_H
2 #define _UAPI_ASM_SIGNAL_H
4 #include <linux/types.h>
7 /* Here we must cater to libcs that poke about in kernel headers. */
10 typedef unsigned long sigset_t
;
12 #endif /* !__KERNEL__ */
14 #define SA_RESTORER 0x04000000 /* to get struct sigaction correct */
16 #include <asm-generic/signal.h>
19 /* Here we must cater to libcs that poke about in kernel headers. */
23 __sighandler_t _sa_handler
;
24 void (*_sa_sigaction
)(int, struct siginfo
*, void *);
27 unsigned long sa_flags
;
28 void (*sa_restorer
)(void);
31 #define sa_handler _u._sa_handler
32 #define sa_sigaction _u._sa_sigaction
34 #endif /* __KERNEL__ */
36 #endif /* _UAPI_ASM_SIGNAL_H */