Go to the documentation of this file. 1 #ifndef _ASM_CRIS_SIGNAL_H
2 #define _ASM_CRIS_SIGNAL_H
4 #include <linux/types.h>
15 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
71 #define SIGRTMAX _NSIG
87 #define SA_NOCLDSTOP 0x00000001u
88 #define SA_NOCLDWAIT 0x00000002u
89 #define SA_SIGINFO 0x00000004u
90 #define SA_ONSTACK 0x08000000u
91 #define SA_RESTART 0x10000000u
92 #define SA_NODEFER 0x40000000u
93 #define SA_RESETHAND 0x80000000u
95 #define SA_NOMASK SA_NODEFER
96 #define SA_ONESHOT SA_RESETHAND
98 #define SA_RESTORER 0x04000000
106 #define MINSIGSTKSZ 2048
107 #define SIGSTKSZ 8192
142 #define sa_handler _u._sa_handler
143 #define sa_sigaction _u._sa_sigaction
154 #include <asm/sigcontext.h>
159 #define ptrace_signal_deliver(regs, cookie) do { } while (0)