1 #ifndef __ASM_SH64_SIGNAL_H
2 #define __ASM_SH64_SIGNAL_H
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * include/asm-sh64/signal.h
11 * Copyright (C) 2000, 2001 Paolo Alberelli
15 #include <linux/types.h>
17 /* Avoid too many header ordering problems. */
22 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
24 typedef unsigned long old_sigset_t
; /* at least 32 bits */
27 unsigned long sig
[_NSIG_WORDS
];
68 /* These should not be considered constants from userland. */
70 #define SIGRTMAX (_NSIG-1)
75 * SA_ONSTACK indicates that a registered stack_t will be used.
76 * SA_RESTART flag to get restarting signals (which were the default long ago)
77 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
78 * SA_RESETHAND clears the handler when the signal is delivered.
79 * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
80 * SA_NODEFER prevents the current signal from being masked in the handler.
82 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
83 * Unix names RESETHAND and NODEFER respectively.
85 #define SA_NOCLDSTOP 0x00000001
86 #define SA_NOCLDWAIT 0x00000002 /* not supported yet */
87 #define SA_SIGINFO 0x00000004
88 #define SA_ONSTACK 0x08000000
89 #define SA_RESTART 0x10000000
90 #define SA_NODEFER 0x40000000
91 #define SA_RESETHAND 0x80000000
93 #define SA_NOMASK SA_NODEFER
94 #define SA_ONESHOT SA_RESETHAND
96 #define SA_RESTORER 0x04000000
99 * sigaltstack controls
104 #define MINSIGSTKSZ 2048
105 #define SIGSTKSZ THREAD_SIZE
107 #include <asm-generic/signal.h>
110 struct old_sigaction
{
111 __sighandler_t sa_handler
;
112 old_sigset_t sa_mask
;
113 unsigned long sa_flags
;
114 void (*sa_restorer
)(void);
118 __sighandler_t sa_handler
;
119 unsigned long sa_flags
;
120 void (*sa_restorer
)(void);
121 sigset_t sa_mask
; /* mask last for extensibility */
128 /* Here we must cater to libcs that poke about in kernel headers. */
132 __sighandler_t _sa_handler
;
133 void (*_sa_sigaction
)(int, struct siginfo
*, void *);
136 unsigned long sa_flags
;
137 void (*sa_restorer
)(void);
140 #define sa_handler _u._sa_handler
141 #define sa_sigaction _u._sa_sigaction
143 #endif /* __KERNEL__ */
145 typedef struct sigaltstack
{
152 #include <asm/sigcontext.h>
154 #define sigmask(sig) (1UL << ((sig) - 1))
155 #define ptrace_signal_deliver(regs, cookie) do { } while (0)
157 #endif /* __KERNEL__ */
159 #endif /* __ASM_SH64_SIGNAL_H */