1 #ifndef _ASM_IA64_SIGNAL_H
2 #define _ASM_IA64_SIGNAL_H
5 * Modified 1998-2001, 2003
6 * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
8 * Unfortunately, this file is being included by bits/signal.h in
9 * glibc-2.x. Hence the #ifdef __KERNEL__ ugliness.
48 /* signal 31 is no longer "unused", but the SIGUNUSED macro remains for backwards compatibility */
51 /* These should not be considered constants from userland. */
53 #define SIGRTMAX _NSIG
58 * SA_ONSTACK indicates that a registered stack_t will be used.
59 * SA_INTERRUPT is a no-op, but left due to historical reasons.
60 * SA_RESTART flag to get restarting signals (which were the default long ago)
61 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
62 * SA_RESETHAND clears the handler when the signal is delivered.
63 * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
64 * SA_NODEFER prevents the current signal from being masked in the handler.
66 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
67 * Unix names RESETHAND and NODEFER respectively.
69 #define SA_NOCLDSTOP 0x00000001
70 #define SA_NOCLDWAIT 0x00000002
71 #define SA_SIGINFO 0x00000004
72 #define SA_ONSTACK 0x08000000
73 #define SA_RESTART 0x10000000
74 #define SA_NODEFER 0x40000000
75 #define SA_RESETHAND 0x80000000
77 #define SA_NOMASK SA_NODEFER
78 #define SA_ONESHOT SA_RESETHAND
79 #define SA_INTERRUPT 0x20000000 /* dummy -- ignored */
81 #define SA_RESTORER 0x04000000
84 * sigaltstack controls
90 * The minimum stack size needs to be fairly large because we want to
91 * be sure that an app compiled for today's CPUs will continue to run
92 * on all future CPU models. The CPU model matters because the signal
93 * frame needs to have space for the complete machine state, including
94 * all physical stacked registers. The number of physical stacked
95 * registers is CPU model dependent, but given that the width of
96 * ar.rsc.loadrs is 14 bits, we can assume that they'll never take up
97 * more than 16KB of space.
101 * This is a stupid typo: the value was _meant_ to be 131072 (0x20000), but I typed it
102 * in wrong. ;-( To preserve backwards compatibility, we leave the kernel at the
103 * incorrect value and fix libc only.
105 # define MINSIGSTKSZ 131027 /* min. stack size for sigaltstack() */
107 # define MINSIGSTKSZ 131072 /* min. stack size for sigaltstack() */
109 #define SIGSTKSZ 262144 /* default stack size for sigaltstack() */
115 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
117 #define SA_PERCPU_IRQ 0x02000000
119 #endif /* __KERNEL__ */
121 #include <asm-generic/signal.h>
123 # ifndef __ASSEMBLY__
125 # include <linux/types.h>
127 /* Avoid too many header ordering problems. */
130 typedef struct sigaltstack {
138 /* Most things should be clean enough to redefine this at will, if care
139 is taken to make libc match. */
141 typedef unsigned long old_sigset_t;
144 unsigned long sig[_NSIG_WORDS];
148 __sighandler_t sa_handler;
149 unsigned long sa_flags;
150 sigset_t sa_mask; /* mask last for extensibility */
157 # include <asm/sigcontext.h>
159 #define ptrace_signal_deliver(regs, cookie) do { } while (0)
161 #endif /* __KERNEL__ */
163 # endif /* !__ASSEMBLY__ */
164 #endif /* _ASM_IA64_SIGNAL_H */