1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * Modified 1998-2001, 2003
4 * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
6 * Unfortunately, this file is being included by bits/signal.h in
7 * glibc-2.x. Hence the #ifdef __KERNEL__ ugliness.
9 #ifndef _UAPI_ASM_IA64_SIGNAL_H
10 #define _UAPI_ASM_IA64_SIGNAL_H
49 /* signal 31 is no longer "unused", but the SIGUNUSED macro remains for backwards compatibility */
52 /* These should not be considered constants from userland. */
54 #define SIGRTMAX _NSIG
59 * SA_ONSTACK indicates that a registered stack_t will be used.
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
80 #define SA_RESTORER 0x04000000
83 * The minimum stack size needs to be fairly large because we want to
84 * be sure that an app compiled for today's CPUs will continue to run
85 * on all future CPU models. The CPU model matters because the signal
86 * frame needs to have space for the complete machine state, including
87 * all physical stacked registers. The number of physical stacked
88 * registers is CPU model dependent, but given that the width of
89 * ar.rsc.loadrs is 14 bits, we can assume that they'll never take up
90 * more than 16KB of space.
94 * This is a stupid typo: the value was _meant_ to be 131072 (0x20000), but I typed it
95 * in wrong. ;-( To preserve backwards compatibility, we leave the kernel at the
96 * incorrect value and fix libc only.
98 # define MINSIGSTKSZ 131027 /* min. stack size for sigaltstack() */
100 # define MINSIGSTKSZ 131072 /* min. stack size for sigaltstack() */
102 #define SIGSTKSZ 262144 /* default stack size for sigaltstack() */
105 #include <asm-generic/signal-defs.h>
107 # ifndef __ASSEMBLY__
109 # include <linux/types.h>
111 /* Avoid too many header ordering problems. */
114 typedef struct sigaltstack
{
121 # endif /* !__ASSEMBLY__ */
122 #endif /* _UAPI_ASM_IA64_SIGNAL_H */