| /* Here we must cater to libcs that poke about in kernel headers. */ |
| typedef unsigned long sigset_t; |
| #define SA_RESTORER 0x04000000 /* to get struct sigaction correct */ |
| #include <asm-generic/signal.h> |
| __sighandler_t sa_handler; |
| __sigrestore_t sa_restorer; |
| /* Here we must cater to libcs that poke about in kernel headers. */ |
| __sighandler_t _sa_handler; |
| void (*_sa_sigaction)(int, struct siginfo *, void *); |
| void (*sa_restorer)(void); |
| #define sa_handler _u._sa_handler |
| #define sa_sigaction _u._sa_sigaction |
| #endif /* _ASM_SIGNAL_H */ |