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