4 * Derived from "include/asm-i386/signal.h"
7 #ifndef _UAPI_ASMS390_SIGNAL_H
8 #define _UAPI_ASMS390_SIGNAL_H
10 #include <linux/types.h>
11 #include <linux/time.h>
13 /* Avoid too many header ordering problems. */
18 /* Here we must cater to libcs that poke about in kernel headers. */
21 typedef unsigned long sigset_t
;
23 #endif /* __KERNEL__ */
63 /* These should not be considered constants from userland. */
65 #define SIGRTMAX _NSIG
70 * SA_ONSTACK indicates that a registered stack_t will be used.
71 * SA_RESTART flag to get restarting signals (which were the default long ago)
72 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
73 * SA_RESETHAND clears the handler when the signal is delivered.
74 * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
75 * SA_NODEFER prevents the current signal from being masked in the handler.
77 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
78 * Unix names RESETHAND and NODEFER respectively.
80 #define SA_NOCLDSTOP 0x00000001
81 #define SA_NOCLDWAIT 0x00000002
82 #define SA_SIGINFO 0x00000004
83 #define SA_ONSTACK 0x08000000
84 #define SA_RESTART 0x10000000
85 #define SA_NODEFER 0x40000000
86 #define SA_RESETHAND 0x80000000
88 #define SA_NOMASK SA_NODEFER
89 #define SA_ONESHOT SA_RESETHAND
91 #define SA_RESTORER 0x04000000
93 #define MINSIGSTKSZ 2048
96 #include <asm-generic/signal-defs.h>
99 /* Here we must cater to libcs that poke about in kernel headers. */
103 __sighandler_t _sa_handler
;
104 void (*_sa_sigaction
)(int, struct siginfo
*, void *);
106 #ifndef __s390x__ /* lovely */
108 unsigned long sa_flags
;
109 void (*sa_restorer
)(void);
110 #else /* __s390x__ */
111 unsigned long sa_flags
;
112 void (*sa_restorer
)(void);
114 #endif /* __s390x__ */
117 #define sa_handler _u._sa_handler
118 #define sa_sigaction _u._sa_sigaction
120 #endif /* __KERNEL__ */
122 typedef struct sigaltstack
{
129 #endif /* _UAPI_ASMS390_SIGNAL_H */