2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / ada / 4gintnam.ads
blobafd82f2bb6cc8d00389c96cc2bc4cb2883b73c1c
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
5 -- A D A . I N T E R R U P T S . N A M E S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1991-1994, Florida State University --
10 -- Copyright (C) 1995-2003, Ada Core Technologies --
11 -- --
12 -- GNARL is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU Library General Public License as published by the --
14 -- Free Software Foundation; either version 2, or (at your option) any --
15 -- later version. GNARL is distributed in the hope that it will be use- --
16 -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of --
17 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Gen- --
18 -- eral Library Public License for more details. You should have received --
19 -- a copy of the GNU Library General Public License along with GNARL; see --
20 -- file COPYING.LIB. If not, write to the Free Software Foundation, 59 --
21 -- Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
22 -- --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
29 -- --
30 -- GNARL was developed by the GNARL team at Florida State University. --
31 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
32 -- --
33 ------------------------------------------------------------------------------
35 -- This is the Irix version of this package
37 -- The following signals are reserved by the run time (Athread library):
39 -- SIGFPE, SIGILL, SIGSEGV, SIGBUS, SIGTRAP, SIGSTOP, SIGKILL
41 -- The following signals are reserved by the run time (Pthread library):
43 -- SIGTSTP, SIGILL, SIGTRAP, SIGEMT, SIGFPE, SIGBUS, SIGSTOP, SIGKILL,
44 -- SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ, SIGPROF, SIGPTINTR, SIGPTRESCHED,
45 -- SIGABRT, SIGINT
47 -- The pragma Unreserve_All_Interrupts affects the following signal
48 -- (Pthread library):
50 -- SIGINT: made available for Ada handler
52 -- This target-dependent package spec contains names of interrupts
53 -- supported by the local system.
55 with System.OS_Interface;
56 -- used for names of interrupts
58 package Ada.Interrupts.Names is
60 -- Beware that the mapping of names to signals may be
61 -- many-to-one. There may be aliases. Also, for all
62 -- signal names that are not supported on the current system
63 -- the value of the corresponding constant will be zero.
65 SIGHUP : constant Interrupt_ID :=
66 System.OS_Interface.SIGHUP; -- hangup
68 SIGINT : constant Interrupt_ID :=
69 System.OS_Interface.SIGINT; -- interrupt (rubout)
71 SIGQUIT : constant Interrupt_ID :=
72 System.OS_Interface.SIGQUIT; -- quit (ASCD FS)
74 SIGILL : constant Interrupt_ID :=
75 System.OS_Interface.SIGILL; -- illegal instruction (not reset)
77 SIGTRAP : constant Interrupt_ID :=
78 System.OS_Interface.SIGTRAP; -- trace trap (not reset)
80 SIGIOT : constant Interrupt_ID :=
81 System.OS_Interface.SIGIOT; -- IOT instruction
83 SIGABRT : constant Interrupt_ID :=
84 System.OS_Interface.SIGABRT; -- used by abort, replace SIGIOT in the
85 -- future
87 SIGEMT : constant Interrupt_ID :=
88 System.OS_Interface.SIGEMT; -- EMT instruction
90 SIGFPE : constant Interrupt_ID :=
91 System.OS_Interface.SIGFPE; -- floating point exception
93 SIGKILL : constant Interrupt_ID :=
94 System.OS_Interface.SIGKILL; -- kill (cannot be caught or ignored)
96 SIGBUS : constant Interrupt_ID :=
97 System.OS_Interface.SIGBUS; -- bus error
99 SIGSEGV : constant Interrupt_ID :=
100 System.OS_Interface.SIGSEGV; -- segmentation violation
102 SIGSYS : constant Interrupt_ID :=
103 System.OS_Interface.SIGSYS; -- bad argument to system call
105 SIGPIPE : constant Interrupt_ID :=
106 System.OS_Interface.SIGPIPE; -- write on pipe with no one to read it
108 SIGALRM : constant Interrupt_ID :=
109 System.OS_Interface.SIGALRM; -- alarm clock
111 SIGTERM : constant Interrupt_ID :=
112 System.OS_Interface.SIGTERM; -- software termination signal from kill
114 SIGUSR1 : constant Interrupt_ID :=
115 System.OS_Interface.SIGUSR1; -- user defined signal 1
117 SIGUSR2 : constant Interrupt_ID :=
118 System.OS_Interface.SIGUSR2; -- user defined signal 2
120 SIGCLD : constant Interrupt_ID :=
121 System.OS_Interface.SIGCLD; -- alias for SIGCHLD
123 SIGCHLD : constant Interrupt_ID :=
124 System.OS_Interface.SIGCHLD; -- child status change
126 SIGPWR : constant Interrupt_ID :=
127 System.OS_Interface.SIGPWR; -- power-fail restart
129 SIGWINCH : constant Interrupt_ID :=
130 System.OS_Interface.SIGWINCH; -- window size change
132 SIGURG : constant Interrupt_ID :=
133 System.OS_Interface.SIGURG; -- urgent condition on IO channel
135 SIGPOLL : constant Interrupt_ID :=
136 System.OS_Interface.SIGPOLL; -- pollable event occurred
138 SIGIO : constant Interrupt_ID :=
139 System.OS_Interface.SIGIO; -- I/O possible (Solaris SIGPOLL alias)
141 SIGSTOP : constant Interrupt_ID :=
142 System.OS_Interface.SIGSTOP; -- stop (cannot be caught or ignored)
144 SIGTSTP : constant Interrupt_ID :=
145 System.OS_Interface.SIGTSTP; -- user stop requested from tty
147 SIGCONT : constant Interrupt_ID :=
148 System.OS_Interface.SIGCONT; -- stopped process has been continued
150 SIGTTIN : constant Interrupt_ID :=
151 System.OS_Interface.SIGTTIN; -- background tty read attempted
153 SIGTTOU : constant Interrupt_ID :=
154 System.OS_Interface.SIGTTOU; -- background tty write attempted
156 SIGVTALRM : constant Interrupt_ID :=
157 System.OS_Interface.SIGVTALRM; -- virtual timer expired
159 SIGPROF : constant Interrupt_ID :=
160 System.OS_Interface.SIGPROF; -- profiling timer expired
162 SIGXCPU : constant Interrupt_ID :=
163 System.OS_Interface.SIGXCPU; -- CPU time limit exceeded
165 SIGXFSZ : constant Interrupt_ID :=
166 System.OS_Interface.SIGXFSZ; -- filesize limit exceeded
168 SIGK32 : constant Interrupt_ID :=
169 System.OS_Interface.SIGK32; -- reserved for kernel (IRIX)
171 SIGCKPT : constant Interrupt_ID :=
172 System.OS_Interface.SIGCKPT; -- Checkpoint warning
174 SIGRESTART : constant Interrupt_ID :=
175 System.OS_Interface.SIGRESTART; -- Restart warning
177 SIGUME : constant Interrupt_ID :=
178 System.OS_Interface.SIGUME; -- Uncorrectable memory error
180 -- Signals defined for Posix 1003.1c.
182 SIGPTINTR : constant Interrupt_ID :=
183 System.OS_Interface.SIGPTINTR; -- Pthread Interrupt Signal
185 SIGPTRESCHED : constant Interrupt_ID :=
186 System.OS_Interface.SIGPTRESCHED; -- Pthread Rescheduling Signal
188 -- Posix 1003.1b signals
190 SIGRTMIN : constant Interrupt_ID :=
191 System.OS_Interface.SIGRTMIN; -- Posix 1003.1b signals
193 SIGRTMAX : constant Interrupt_ID :=
194 System.OS_Interface.SIGRTMAX; -- Posix 1003.1b signals
196 end Ada.Interrupts.Names;