| #ifndef _ASM_PARISC_SIGNAL_H |
| #define _ASM_PARISC_SIGNAL_H |
| #include <uapi/asm/signal.h> |
| /* bits-per-word, where word apparently means 'long' not 'int' */ |
| #define _NSIG_BPW BITS_PER_LONG |
| #define _NSIG_WORDS (_NSIG / _NSIG_BPW) |
| /* Most things should be clean enough to redefine this at will, if care |
| is taken to make libc match. */ |
| typedef unsigned long old_sigset_t; /* at least 32 bits */ |
| /* next_signal() assumes this is a long - no choice */ |
| unsigned long sig[_NSIG_WORDS]; |
| __sighandler_t sa_handler; |
| sigset_t sa_mask; /* mask last for extensibility */ |
| #include <asm/sigcontext.h> |
| #endif /* _ASM_PARISC_SIGNAL_H */ |