1 #ifndef _ASM_PARISC_SIGNAL_H
2 #define _ASM_PARISC_SIGNAL_H
4 #include <uapi/asm/signal.h>
8 /* bits-per-word, where word apparently means 'long' not 'int' */
9 #define _NSIG_BPW BITS_PER_LONG
10 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
17 /* Most things should be clean enough to redefine this at will, if care
18 is taken to make libc match. */
20 typedef unsigned long old_sigset_t
; /* at least 32 bits */
23 /* next_signal() assumes this is a long - no choice */
24 unsigned long sig
[_NSIG_WORDS
];
28 __sighandler_t sa_handler
;
29 unsigned long sa_flags
;
30 sigset_t sa_mask
; /* mask last for extensibility */
37 #include <asm/sigcontext.h>
39 #endif /* !__ASSEMBLY */
40 #endif /* _ASM_PARISC_SIGNAL_H */