1 /* MN10300 Signal definitions
3 * Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd.
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
14 #include <linux/types.h>
16 /* Avoid too many header ordering problems. */
20 /* Most things should be clean enough to redefine this at will, if care
21 is taken to make libc match. */
25 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
27 typedef unsigned long old_sigset_t; /* at least 32 bits */
30 unsigned long sig[_NSIG_WORDS];
34 /* Here we must cater to libcs that poke about in kernel headers. */
37 typedef unsigned long sigset_t;
39 #endif /* __KERNEL__ */
79 /* These should not be considered constants from userland. */
81 #define SIGRTMAX (_NSIG-1)
86 * SA_ONSTACK indicates that a registered stack_t will be used.
87 * SA_RESTART flag to get restarting signals (which were the default long ago)
88 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
89 * SA_RESETHAND clears the handler when the signal is delivered.
90 * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
91 * SA_NODEFER prevents the current signal from being masked in the handler.
93 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
94 * Unix names RESETHAND and NODEFER respectively.
96 #define SA_NOCLDSTOP 0x00000001U
97 #define SA_NOCLDWAIT 0x00000002U
98 #define SA_SIGINFO 0x00000004U
99 #define SA_ONSTACK 0x08000000U
100 #define SA_RESTART 0x10000000U
101 #define SA_NODEFER 0x40000000U
102 #define SA_RESETHAND 0x80000000U
104 #define SA_NOMASK SA_NODEFER
105 #define SA_ONESHOT SA_RESETHAND
107 #define SA_RESTORER 0x04000000
110 * sigaltstack controls
115 #define MINSIGSTKSZ 2048
116 #define SIGSTKSZ 8192
118 #include <asm-generic/signal.h>
121 struct old_sigaction {
122 __sighandler_t sa_handler;
123 old_sigset_t sa_mask;
124 unsigned long sa_flags;
125 __sigrestore_t sa_restorer;
129 __sighandler_t sa_handler;
130 unsigned long sa_flags;
131 __sigrestore_t sa_restorer;
132 sigset_t sa_mask; /* mask last for extensibility */
139 /* Here we must cater to libcs that poke about in kernel headers. */
143 __sighandler_t _sa_handler;
144 void (*_sa_sigaction)(int, struct siginfo *, void *);
147 unsigned long sa_flags;
148 void (*sa_restorer)(void);
151 #define sa_handler _u._sa_handler
152 #define sa_sigaction _u._sa_sigaction
154 #endif /* __KERNEL__ */
156 typedef struct sigaltstack {
163 #include <asm/sigcontext.h>
167 #define ptrace_signal_deliver(regs, cookie) do { } while (0)
169 #endif /* __KERNEL__ */
171 #endif /* _ASM_SIGNAL_H */