]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/mips/bits/siginfo.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / mips / bits / siginfo.h
1 /* siginfo_t, sigevent and constants. Linux/MIPS version.
2 Copyright (C) 1997-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #if !defined _SIGNAL_H && !defined __need_siginfo_t \
20 && !defined __need_sigevent_t
21 # error "Never include this file directly. Use <signal.h> instead"
22 #endif
23
24 #include <bits/wordsize.h>
25
26 #if (!defined __have_sigval_t \
27 && (defined _SIGNAL_H || defined __need_siginfo_t \
28 || defined __need_sigevent_t))
29 # define __have_sigval_t 1
30
31 /* Type for data associated with a signal. */
32 typedef union sigval
33 {
34 int sival_int;
35 void *sival_ptr;
36 } sigval_t;
37 #endif
38
39 #if (!defined __have_siginfo_t \
40 && (defined _SIGNAL_H || defined __need_siginfo_t))
41 # define __have_siginfo_t 1
42
43 # define __SI_MAX_SIZE 128
44 # if __WORDSIZE == 64
45 # define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 4)
46 # else
47 # define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 3)
48 # endif
49
50
51 typedef struct
52 {
53 int si_signo; /* Signal number. */
54 int si_code; /* Signal code. */
55 int si_errno; /* If non-zero, an errno value associated with
56 this signal, as defined in <errno.h>. */
57 int __pad0[__SI_MAX_SIZE / sizeof (int) - __SI_PAD_SIZE - 3];
58 /* Explicit padding. */
59
60 union
61 {
62 int _pad[__SI_PAD_SIZE];
63
64 /* kill(). */
65 struct
66 {
67 __pid_t si_pid; /* Sending process ID. */
68 __uid_t si_uid; /* Real user ID of sending process. */
69 } _kill;
70
71 /* POSIX.1b timers. */
72 struct
73 {
74 int si_tid; /* Timer ID. */
75 int si_overrun; /* Overrun count. */
76 sigval_t si_sigval; /* Signal value. */
77 } _timer;
78
79 /* POSIX.1b signals. */
80 struct
81 {
82 __pid_t si_pid; /* Sending process ID. */
83 __uid_t si_uid; /* Real user ID of sending process. */
84 sigval_t si_sigval; /* Signal value. */
85 } _rt;
86
87 /* SIGCHLD. */
88 struct
89 {
90 __pid_t si_pid; /* Which child. */
91 __uid_t si_uid; /* Real user ID of sending process. */
92 int si_status; /* Exit value or signal. */
93 __clock_t si_utime;
94 __clock_t si_stime;
95 } _sigchld;
96
97 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
98 struct
99 {
100 void *si_addr; /* Faulting insn/memory ref. */
101 short int si_addr_lsb; /* Valid LSB of the reported address. */
102 } _sigfault;
103
104 /* SIGPOLL. */
105 struct
106 {
107 long int si_band; /* Band event for SIGPOLL. */
108 int si_fd;
109 } _sigpoll;
110
111 /* SIGSYS. */
112 struct
113 {
114 void *_call_addr; /* Calling user insn. */
115 int _syscall; /* Triggering system call number. */
116 unsigned int _arch; /* AUDIT_ARCH_* of syscall. */
117 } _sigsys;
118 } _sifields;
119 } siginfo_t;
120
121
122 /* X/Open requires some more fields with fixed names. */
123 # define si_pid _sifields._kill.si_pid
124 # define si_uid _sifields._kill.si_uid
125 # define si_timerid _sifields._timer.si_tid
126 # define si_overrun _sifields._timer.si_overrun
127 # define si_status _sifields._sigchld.si_status
128 # define si_utime _sifields._sigchld.si_utime
129 # define si_stime _sifields._sigchld.si_stime
130 # define si_value _sifields._rt.si_sigval
131 # define si_int _sifields._rt.si_sigval.sival_int
132 # define si_ptr _sifields._rt.si_sigval.sival_ptr
133 # define si_addr _sifields._sigfault.si_addr
134 # define si_addr_lsb _sifields._sigfault.si_addr_lsb
135 # define si_band _sifields._sigpoll.si_band
136 # define si_fd _sifields._sigpoll.si_fd
137 # define si_call_addr _sifields._sigsys._call_addr
138 # define si_syscall _sifields._sigsys._syscall
139 # define si_arch _sifields._sigsys._arch
140
141
142 /* Values for `si_code'. Positive values are reserved for kernel-generated
143 signals. */
144 enum
145 {
146 SI_ASYNCNL = -60, /* Sent by asynch name lookup completion. */
147 # define SI_ASYNCNL SI_ASYNCNL
148 SI_TKILL = -6, /* Sent by tkill. */
149 # define SI_TKILL SI_TKILL
150 SI_SIGIO, /* Sent by queued SIGIO. */
151 # define SI_SIGIO SI_SIGIO
152 SI_MESGQ, /* Sent by real time mesq state change. */
153 # define SI_MESGQ SI_MESGQ
154 SI_TIMER, /* Sent by real time mesq state change. */
155 # define SI_TIMER SI_TIMER
156 SI_ASYNCIO, /* Sent by AIO completion. */
157 # define SI_ASYNCIO SI_ASYNCIO
158 SI_QUEUE, /* Sent by sigqueue. */
159 # define SI_QUEUE SI_QUEUE
160 SI_USER, /* Sent by kill, sigsend. */
161 # define SI_USER SI_USER
162 SI_KERNEL = 0x80 /* Send by kernel. */
163 #define SI_KERNEL SI_KERNEL
164 };
165
166
167 # if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
168 /* `si_code' values for SIGILL signal. */
169 enum
170 {
171 ILL_ILLOPC = 1, /* Illegal opcode. */
172 # define ILL_ILLOPC ILL_ILLOPC
173 ILL_ILLOPN, /* Illegal operand. */
174 # define ILL_ILLOPN ILL_ILLOPN
175 ILL_ILLADR, /* Illegal addressing mode. */
176 # define ILL_ILLADR ILL_ILLADR
177 ILL_ILLTRP, /* Illegal trap. */
178 # define ILL_ILLTRP ILL_ILLTRP
179 ILL_PRVOPC, /* Privileged opcode. */
180 # define ILL_PRVOPC ILL_PRVOPC
181 ILL_PRVREG, /* Privileged register. */
182 # define ILL_PRVREG ILL_PRVREG
183 ILL_COPROC, /* Coprocessor error. */
184 # define ILL_COPROC ILL_COPROC
185 ILL_BADSTK /* Internal stack error. */
186 # define ILL_BADSTK ILL_BADSTK
187 };
188
189 /* `si_code' values for SIGFPE signal. */
190 enum
191 {
192 FPE_INTDIV = 1, /* Integer divide by zero. */
193 # define FPE_INTDIV FPE_INTDIV
194 FPE_INTOVF, /* Integer overflow. */
195 # define FPE_INTOVF FPE_INTOVF
196 FPE_FLTDIV, /* Floating point divide by zero. */
197 # define FPE_FLTDIV FPE_FLTDIV
198 FPE_FLTOVF, /* Floating point overflow. */
199 # define FPE_FLTOVF FPE_FLTOVF
200 FPE_FLTUND, /* Floating point underflow. */
201 # define FPE_FLTUND FPE_FLTUND
202 FPE_FLTRES, /* Floating point inexact result. */
203 # define FPE_FLTRES FPE_FLTRES
204 FPE_FLTINV, /* Floating point invalid operation. */
205 # define FPE_FLTINV FPE_FLTINV
206 FPE_FLTSUB /* Subscript out of range. */
207 # define FPE_FLTSUB FPE_FLTSUB
208 };
209
210 /* `si_code' values for SIGSEGV signal. */
211 enum
212 {
213 SEGV_MAPERR = 1, /* Address not mapped to object. */
214 # define SEGV_MAPERR SEGV_MAPERR
215 SEGV_ACCERR /* Invalid permissions for mapped object. */
216 # define SEGV_ACCERR SEGV_ACCERR
217 };
218
219 /* `si_code' values for SIGBUS signal. */
220 enum
221 {
222 BUS_ADRALN = 1, /* Invalid address alignment. */
223 # define BUS_ADRALN BUS_ADRALN
224 BUS_ADRERR, /* Non-existant physical address. */
225 # define BUS_ADRERR BUS_ADRERR
226 BUS_OBJERR, /* Object specific hardware error. */
227 # define BUS_OBJERR BUS_OBJERR
228 BUS_MCEERR_AR, /* Hardware memory error: action required. */
229 # define BUS_MCEERR_AR BUS_MCEERR_AR
230 BUS_MCEERR_AO /* Hardware memory error: action optional. */
231 # define BUS_MCEERR_AO BUS_MCEERR_AO
232 };
233 # endif
234
235 # ifdef __USE_XOPEN_EXTENDED
236 /* `si_code' values for SIGTRAP signal. */
237 enum
238 {
239 TRAP_BRKPT = 1, /* Process breakpoint. */
240 # define TRAP_BRKPT TRAP_BRKPT
241 TRAP_TRACE /* Process trace trap. */
242 # define TRAP_TRACE TRAP_TRACE
243 };
244 # endif
245
246 # if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
247 /* `si_code' values for SIGCHLD signal. */
248 enum
249 {
250 CLD_EXITED = 1, /* Child has exited. */
251 # define CLD_EXITED CLD_EXITED
252 CLD_KILLED, /* Child was killed. */
253 # define CLD_KILLED CLD_KILLED
254 CLD_DUMPED, /* Child terminated abnormally. */
255 # define CLD_DUMPED CLD_DUMPED
256 CLD_TRAPPED, /* Traced child has trapped. */
257 # define CLD_TRAPPED CLD_TRAPPED
258 CLD_STOPPED, /* Child has stopped. */
259 # define CLD_STOPPED CLD_STOPPED
260 CLD_CONTINUED /* Stopped child has continued. */
261 # define CLD_CONTINUED CLD_CONTINUED
262 };
263
264 /* `si_code' values for SIGPOLL signal. */
265 enum
266 {
267 POLL_IN = 1, /* Data input available. */
268 # define POLL_IN POLL_IN
269 POLL_OUT, /* Output buffers available. */
270 # define POLL_OUT POLL_OUT
271 POLL_MSG, /* Input message available. */
272 # define POLL_MSG POLL_MSG
273 POLL_ERR, /* I/O error. */
274 # define POLL_ERR POLL_ERR
275 POLL_PRI, /* High priority input available. */
276 # define POLL_PRI POLL_PRI
277 POLL_HUP /* Device disconnected. */
278 # define POLL_HUP POLL_HUP
279 };
280 # endif
281
282 # undef __need_siginfo_t
283 #endif /* !have siginfo_t && (have _SIGNAL_H || need siginfo_t). */
284
285
286 #if (defined _SIGNAL_H || defined __need_sigevent_t) \
287 && !defined __have_sigevent_t
288 # define __have_sigevent_t 1
289
290 /* Structure to transport application-defined values with signals. */
291 # define __SIGEV_MAX_SIZE 64
292 # if __WORDSIZE == 64
293 # define __SIGEV_PAD_SIZE ((__SIGEV_MAX_SIZE / sizeof (int)) - 4)
294 # else
295 # define __SIGEV_PAD_SIZE ((__SIGEV_MAX_SIZE / sizeof (int)) - 3)
296 # endif
297
298 /* Forward declaration. */
299 # ifndef __have_pthread_attr_t
300 typedef union pthread_attr_t pthread_attr_t;
301 # define __have_pthread_attr_t 1
302 # endif
303
304 typedef struct sigevent
305 {
306 sigval_t sigev_value;
307 int sigev_signo;
308 int sigev_notify;
309
310 union
311 {
312 int _pad[__SIGEV_PAD_SIZE];
313
314 /* When SIGEV_SIGNAL and SIGEV_THREAD_ID set, LWP ID of the
315 thread to receive the signal. */
316 __pid_t _tid;
317
318 struct
319 {
320 void (*_function) (sigval_t); /* Function to start. */
321 pthread_attr_t *_attribute; /* Thread attributes. */
322 } _sigev_thread;
323 } _sigev_un;
324 } sigevent_t;
325
326 /* POSIX names to access some of the members. */
327 # define sigev_notify_function _sigev_un._sigev_thread._function
328 # define sigev_notify_attributes _sigev_un._sigev_thread._attribute
329
330 /* `sigev_notify' values. */
331 enum
332 {
333 SIGEV_SIGNAL = 0, /* Notify via signal. */
334 # define SIGEV_SIGNAL SIGEV_SIGNAL
335 SIGEV_NONE, /* Other notification: meaningless. */
336 # define SIGEV_NONE SIGEV_NONE
337 SIGEV_THREAD, /* Deliver via thread creation. */
338 # define SIGEV_THREAD SIGEV_THREAD
339
340 SIGEV_THREAD_ID = 4 /* Send signal to specific thread. */
341 #define SIGEV_THREAD_ID SIGEV_THREAD_ID
342 };
343
344 #endif /* have _SIGNAL_H. */