blob: bfed83a818ccd3f21d662f96b7fe67c0349bc9fc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/signal.h
3 *
4 * S390 version
5 *
6 * Derived from "include/asm-i386/signal.h"
7 */
8
9#ifndef _ASMS390_SIGNAL_H
10#define _ASMS390_SIGNAL_H
11
12#include <linux/types.h>
13#include <linux/time.h>
14
15/* Avoid too many header ordering problems. */
16struct siginfo;
17struct pt_regs;
18
19#ifdef __KERNEL__
20/* Most things should be clean enough to redefine this at will, if care
21 is taken to make libc match. */
22#include <asm/sigcontext.h>
23#define _NSIG _SIGCONTEXT_NSIG
24#define _NSIG_BPW _SIGCONTEXT_NSIG_BPW
25#define _NSIG_WORDS _SIGCONTEXT_NSIG_WORDS
26
27typedef unsigned long old_sigset_t; /* at least 32 bits */
28
29typedef struct {
30 unsigned long sig[_NSIG_WORDS];
31} sigset_t;
32
33#else
34/* Here we must cater to libcs that poke about in kernel headers. */
35
36#define NSIG 32
37typedef unsigned long sigset_t;
38
39#endif /* __KERNEL__ */
40
41#define SIGHUP 1
42#define SIGINT 2
43#define SIGQUIT 3
44#define SIGILL 4
45#define SIGTRAP 5
46#define SIGABRT 6
47#define SIGIOT 6
48#define SIGBUS 7
49#define SIGFPE 8
50#define SIGKILL 9
51#define SIGUSR1 10
52#define SIGSEGV 11
53#define SIGUSR2 12
54#define SIGPIPE 13
55#define SIGALRM 14
56#define SIGTERM 15
57#define SIGSTKFLT 16
58#define SIGCHLD 17
59#define SIGCONT 18
60#define SIGSTOP 19
61#define SIGTSTP 20
62#define SIGTTIN 21
63#define SIGTTOU 22
64#define SIGURG 23
65#define SIGXCPU 24
66#define SIGXFSZ 25
67#define SIGVTALRM 26
68#define SIGPROF 27
69#define SIGWINCH 28
70#define SIGIO 29
71#define SIGPOLL SIGIO
72/*
73#define SIGLOST 29
74*/
75#define SIGPWR 30
76#define SIGSYS 31
77#define SIGUNUSED 31
78
79/* These should not be considered constants from userland. */
80#define SIGRTMIN 32
81#define SIGRTMAX _NSIG
82
83/*
84 * SA_FLAGS values:
85 *
86 * SA_ONSTACK indicates that a registered stack_t will be used.
87 * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the
88 * SA_RESTART flag to get restarting signals (which were the default long ago)
89 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
90 * SA_RESETHAND clears the handler when the signal is delivered.
91 * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
92 * SA_NODEFER prevents the current signal from being masked in the handler.
93 *
94 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
95 * Unix names RESETHAND and NODEFER respectively.
96 */
97#define SA_NOCLDSTOP 0x00000001
98#define SA_NOCLDWAIT 0x00000002
99#define SA_SIGINFO 0x00000004
100#define SA_ONSTACK 0x08000000
101#define SA_RESTART 0x10000000
102#define SA_NODEFER 0x40000000
103#define SA_RESETHAND 0x80000000
104
105#define SA_NOMASK SA_NODEFER
106#define SA_ONESHOT SA_RESETHAND
107#define SA_INTERRUPT 0x20000000 /* dummy -- ignored */
108
109#define SA_RESTORER 0x04000000
110
111/*
112 * sigaltstack controls
113 */
114#define SS_ONSTACK 1
115#define SS_DISABLE 2
116
117#define MINSIGSTKSZ 2048
118#define SIGSTKSZ 8192
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#define SIG_BLOCK 0 /* for blocking signals */
121#define SIG_UNBLOCK 1 /* for unblocking signals */
122#define SIG_SETMASK 2 /* for setting the signal mask */
123
124/* Type of a signal handler. */
125typedef void (*__sighandler_t)(int);
126
127#define SIG_DFL ((__sighandler_t)0) /* default signal handling */
128#define SIG_IGN ((__sighandler_t)1) /* ignore signal */
129#define SIG_ERR ((__sighandler_t)-1) /* error return from signal */
130
131#ifdef __KERNEL__
132struct old_sigaction {
133 __sighandler_t sa_handler;
134 old_sigset_t sa_mask;
135 unsigned long sa_flags;
136 void (*sa_restorer)(void);
137};
138
139struct sigaction {
140 __sighandler_t sa_handler;
141 unsigned long sa_flags;
142 void (*sa_restorer)(void);
143 sigset_t sa_mask; /* mask last for extensibility */
144};
145
146struct k_sigaction {
147 struct sigaction sa;
148};
149
150#define ptrace_signal_deliver(regs, cookie) do { } while (0)
151
152#else
153/* Here we must cater to libcs that poke about in kernel headers. */
154
155struct sigaction {
156 union {
157 __sighandler_t _sa_handler;
158 void (*_sa_sigaction)(int, struct siginfo *, void *);
159 } _u;
160#ifndef __s390x__ /* lovely */
161 sigset_t sa_mask;
162 unsigned long sa_flags;
163 void (*sa_restorer)(void);
164#else /* __s390x__ */
165 unsigned long sa_flags;
166 void (*sa_restorer)(void);
167 sigset_t sa_mask;
168#endif /* __s390x__ */
169};
170
171#define sa_handler _u._sa_handler
172#define sa_sigaction _u._sa_sigaction
173
174#endif /* __KERNEL__ */
175
176typedef struct sigaltstack {
177 void *ss_sp;
178 int ss_flags;
179 size_t ss_size;
180} stack_t;
181
182
183#endif