Go to the documentation of this file. 1 #ifndef _ASMAXP_SIGNAL_H
2 #define _ASMAXP_SIGNAL_H
4 #include <linux/types.h>
15 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
69 #define SIGPWR SIGINFO
70 #define SIGIOT SIGABRT
74 #define SIGRTMAX _NSIG
90 #define SA_ONSTACK 0x00000001
91 #define SA_RESTART 0x00000002
92 #define SA_NOCLDSTOP 0x00000004
93 #define SA_NODEFER 0x00000008
94 #define SA_RESETHAND 0x00000010
95 #define SA_NOCLDWAIT 0x00000020
96 #define SA_SIGINFO 0x00000040
98 #define SA_ONESHOT SA_RESETHAND
99 #define SA_NOMASK SA_NODEFER
107 #define MINSIGSTKSZ 4096
108 #define SIGSTKSZ 16384
111 #define SIG_UNBLOCK 2
112 #define SIG_SETMASK 3
117 struct osf_sigaction {
145 #define sa_handler _u._sa_handler
146 #define sa_sigaction _u._sa_sigaction
166 #include <asm/sigcontext.h>
168 #define ptrace_signal_deliver(regs, cookie) do { } while (0)