Update copyright notices with scripts/update-copyrights
[glibc.git] / bits / siginfo.h
blobf77d952166bd11dbe6379c314b14893f52cb3d85
1 /* siginfo_t, sigevent and constants. Stub version.
2 Copyright (C) 1997-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
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/>. */
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
24 #if (!defined __have_sigval_t \
25 && (defined _SIGNAL_H || defined __need_siginfo_t \
26 || defined __need_sigevent_t))
27 # define __have_sigval_t 1
29 /* Type for data associated with a signal. */
30 typedef union sigval
32 int sival_int;
33 void *sival_ptr;
34 } sigval_t;
35 #endif
37 #if (!defined __have_siginfo_t \
38 && (defined _SIGNAL_H || defined __need_siginfo_t))
39 # define __have_siginfo_t 1
41 typedef struct siginfo
43 int si_signo; /* Signal number. */
44 int si_errno; /* If non-zero, an errno value associated with
45 this signal, as defined in <errno.h>. */
46 int si_code; /* Signal code. */
47 __pid_t si_pid; /* Sending process ID. */
48 __uid_t si_uid; /* Real user ID of sending process. */
49 void *si_addr; /* Address of faulting instruction. */
50 int si_status; /* Exit value or signal. */
51 long int si_band; /* Band event for SIGPOLL. */
52 union sigval si_value; /* Signal value. */
53 } siginfo_t;
56 /* Values for `si_code'. Positive values are reserved for kernel-generated
57 signals. */
58 enum
60 SI_ASYNCIO = -4, /* Sent by AIO completion. */
61 # define SI_ASYNCIO SI_ASYNCIO
62 SI_MESGQ, /* Sent by real time mesq state change. */
63 # define SI_MESGQ SI_MESGQ
64 SI_TIMER, /* Sent by timer expiration. */
65 # define SI_TIMER SI_TIMER
66 SI_QUEUE, /* Sent by sigqueue. */
67 # define SI_QUEUE SI_QUEUE
68 SI_USER /* Sent by kill, sigsend, raise. */
69 # define SI_USER SI_USER
73 /* `si_code' values for SIGILL signal. */
74 enum
76 ILL_ILLOPC = 1, /* Illegal opcode. */
77 # define ILL_ILLOPC ILL_ILLOPC
78 ILL_ILLOPN, /* Illegal operand. */
79 # define ILL_ILLOPN ILL_ILLOPN
80 ILL_ILLADR, /* Illegal addressing mode. */
81 # define ILL_ILLADR ILL_ILLADR
82 ILL_ILLTRP, /* Illegal trap. */
83 # define ILL_ILLTRP ILL_ILLTRP
84 ILL_PRVOPC, /* Privileged opcode. */
85 # define ILL_PRVOPC ILL_PRVOPC
86 ILL_PRVREG, /* Privileged register. */
87 # define ILL_PRVREG ILL_PRVREG
88 ILL_COPROC, /* Coprocessor error. */
89 # define ILL_COPROC ILL_COPROC
90 ILL_BADSTK /* Internal stack error. */
91 # define ILL_BADSTK ILL_BADSTK
94 /* `si_code' values for SIGFPE signal. */
95 enum
97 FPE_INTDIV = 1, /* Integer divide by zero. */
98 # define FPE_INTDIV FPE_INTDIV
99 FPE_INTOVF, /* Integer overflow. */
100 # define FPE_INTOVF FPE_INTOVF
101 FPE_FLTDIV, /* Floating point divide by zero. */
102 # define FPE_FLTDIV FPE_FLTDIV
103 FPE_FLTOVF, /* Floating point overflow. */
104 # define FPE_FLTOVF FPE_FLTOVF
105 FPE_FLTUND, /* Floating point underflow. */
106 # define FPE_FLTUND FPE_FLTUND
107 FPE_FLTRES, /* Floating point inexact result. */
108 # define FPE_FLTRES FPE_FLTRES
109 FPE_FLTINV, /* Floating point invalid operation. */
110 # define FPE_FLTINV FPE_FLTINV
111 FPE_FLTSUB /* Subscript out of range. */
112 # define FPE_FLTSUB FPE_FLTSUB
115 /* `si_code' values for SIGSEGV signal. */
116 enum
118 SEGV_MAPERR = 1, /* Address not mapped to object. */
119 # define SEGV_MAPERR SEGV_MAPERR
120 SEGV_ACCERR /* Invalid permissions for mapped object. */
121 # define SEGV_ACCERR SEGV_ACCERR
124 /* `si_code' values for SIGBUS signal. */
125 enum
127 BUS_ADRALN = 1, /* Invalid address alignment. */
128 # define BUS_ADRALN BUS_ADRALN
129 BUS_ADRERR, /* Non-existant physical address. */
130 # define BUS_ADRERR BUS_ADRERR
131 BUS_OBJERR /* Object specific hardware error. */
132 # define BUS_OBJERR BUS_OBJERR
135 /* `si_code' values for SIGTRAP signal. */
136 enum
138 TRAP_BRKPT = 1, /* Process breakpoint. */
139 # define TRAP_BRKPT TRAP_BRKPT
140 TRAP_TRACE /* Process trace trap. */
141 # define TRAP_TRACE TRAP_TRACE
144 /* `si_code' values for SIGCHLD signal. */
145 enum
147 CLD_EXITED = 1, /* Child has exited. */
148 # define CLD_EXITED CLD_EXITED
149 CLD_KILLED, /* Child was killed. */
150 # define CLD_KILLED CLD_KILLED
151 CLD_DUMPED, /* Child terminated abnormally. */
152 # define CLD_DUMPED CLD_DUMPED
153 CLD_TRAPPED, /* Traced child has trapped. */
154 # define CLD_TRAPPED CLD_TRAPPED
155 CLD_STOPPED, /* Child has stopped. */
156 # define CLD_STOPPED CLD_STOPPED
157 CLD_CONTINUED /* Stopped child has continued. */
158 # define CLD_CONTINUED CLD_CONTINUED
161 /* `si_code' values for SIGPOLL signal. */
162 enum
164 POLL_IN = 1, /* Data input available. */
165 # define POLL_IN POLL_IN
166 POLL_OUT, /* Output buffers available. */
167 # define POLL_OUT POLL_OUT
168 POLL_MSG, /* Input message available. */
169 # define POLL_MSG POLL_MSG
170 POLL_ERR, /* I/O error. */
171 # define POLL_ERR POLL_ERR
172 POLL_PRI, /* High priority input available. */
173 # define POLL_PRI POLL_PRI
174 POLL_HUP /* Device disconnected. */
175 # define POLL_HUP POLL_HUP
178 # undef __need_siginfo_t
179 #endif /* !have siginfo_t && (have _SIGNAL_H || need siginfo_t). */
182 #if (defined _SIGNAL_H || defined __need_sigevent_t) \
183 && !defined __have_sigevent_t
184 # define __have_sigevent_t 1
186 /* Structure to transport application-defined values with signals. */
187 # define SIGEV_MAX_SIZE 64
188 # define SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE / sizeof (int)) - 3)
190 typedef struct sigevent
192 sigval_t sigev_value;
193 int sigev_signo;
194 int sigev_notify;
195 void (*sigev_notify_function) (sigval_t); /* Function to start. */
196 void *sigev_notify_attributes; /* Really pthread_attr_t.*/
197 } sigevent_t;
199 /* `sigev_notify' values. */
200 enum
202 SIGEV_SIGNAL = 0, /* Notify via signal. */
203 # define SIGEV_SIGNAL SIGEV_SIGNAL
204 SIGEV_NONE, /* Other notification: meaningless. */
205 # define SIGEV_NONE SIGEV_NONE
206 SIGEV_THREAD /* Deliver via thread creation. */
207 # define SIGEV_THREAD SIGEV_THREAD
210 #endif /* have _SIGNAL_H. */