Go to the documentation of this file. 1 #ifndef _H8300_SIGNAL_H
2 #define _H8300_SIGNAL_H
4 #include <linux/types.h>
15 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
71 #define SIGRTMAX _NSIG
86 #define SA_NOCLDSTOP 0x00000001
87 #define SA_NOCLDWAIT 0x00000002
88 #define SA_SIGINFO 0x00000004
89 #define SA_ONSTACK 0x08000000
90 #define SA_RESTART 0x10000000
91 #define SA_NODEFER 0x40000000
92 #define SA_RESETHAND 0x80000000
94 #define SA_NOMASK SA_NODEFER
95 #define SA_ONESHOT SA_RESETHAND
97 #define SA_RESTORER 0x04000000
105 #define MINSIGSTKSZ 2048
106 #define SIGSTKSZ 8192
141 #define sa_handler _u._sa_handler
142 #define sa_sigaction _u._sa_sigaction
154 #include <asm/sigcontext.h>
155 #undef __HAVE_ARCH_SIG_BITOPS
157 #define ptrace_signal_deliver(regs, cookie) do { } while (0)