OSDN Git Service

PR bootstrap/11932
[pf3gnuchains/gcc-fork.git] / gcc / ada / 4gintnam.ads
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 ------------------------------------------------------------------------------
34
35 --  This is the Irix version of this package
36
37 --  The following signals are reserved by the run time (Athread library):
38
39 --  SIGFPE, SIGILL, SIGSEGV, SIGBUS, SIGTRAP, SIGSTOP, SIGKILL
40
41 --  The following signals are reserved by the run time (Pthread library):
42
43 --  SIGTSTP, SIGILL, SIGTRAP, SIGEMT, SIGFPE, SIGBUS, SIGSTOP, SIGKILL,
44 --  SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ, SIGPROF, SIGPTINTR, SIGPTRESCHED,
45 --  SIGABRT, SIGINT
46
47 --  The pragma Unreserve_All_Interrupts affects the following signal
48 --  (Pthread library):
49
50 --  SIGINT: made available for Ada handler
51
52 --  This target-dependent package spec contains names of interrupts
53 --  supported by the local system.
54
55 with System.OS_Interface;
56 --  used for names of interrupts
57
58 package Ada.Interrupts.Names is
59
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.
64
65    SIGHUP : constant Interrupt_ID :=
66      System.OS_Interface.SIGHUP;      --  hangup
67
68    SIGINT : constant Interrupt_ID :=
69      System.OS_Interface.SIGINT;      --  interrupt (rubout)
70
71    SIGQUIT : constant Interrupt_ID :=
72      System.OS_Interface.SIGQUIT;     --  quit (ASCD FS)
73
74    SIGILL : constant Interrupt_ID :=
75      System.OS_Interface.SIGILL;      --  illegal instruction (not reset)
76
77    SIGTRAP : constant Interrupt_ID :=
78      System.OS_Interface.SIGTRAP;     --  trace trap (not reset)
79
80    SIGIOT : constant Interrupt_ID :=
81      System.OS_Interface.SIGIOT;      --  IOT instruction
82
83    SIGABRT : constant Interrupt_ID :=
84      System.OS_Interface.SIGABRT;     --  used by abort, replace SIGIOT in the
85    --                                     future
86
87    SIGEMT : constant Interrupt_ID :=
88      System.OS_Interface.SIGEMT;      --  EMT instruction
89
90    SIGFPE : constant Interrupt_ID :=
91      System.OS_Interface.SIGFPE;      --  floating point exception
92
93    SIGKILL : constant Interrupt_ID :=
94      System.OS_Interface.SIGKILL;     --  kill (cannot be caught or ignored)
95
96    SIGBUS : constant Interrupt_ID :=
97      System.OS_Interface.SIGBUS;      --  bus error
98
99    SIGSEGV : constant Interrupt_ID :=
100      System.OS_Interface.SIGSEGV;     --  segmentation violation
101
102    SIGSYS : constant Interrupt_ID :=
103      System.OS_Interface.SIGSYS;      --  bad argument to system call
104
105    SIGPIPE : constant Interrupt_ID :=
106      System.OS_Interface.SIGPIPE;     --  write on pipe with no one to read it
107
108    SIGALRM : constant Interrupt_ID :=
109      System.OS_Interface.SIGALRM;     --  alarm clock
110
111    SIGTERM : constant Interrupt_ID :=
112      System.OS_Interface.SIGTERM;     --  software termination signal from kill
113
114    SIGUSR1 : constant Interrupt_ID :=
115      System.OS_Interface.SIGUSR1;     --  user defined signal 1
116
117    SIGUSR2 : constant Interrupt_ID :=
118      System.OS_Interface.SIGUSR2;     --  user defined signal 2
119
120    SIGCLD : constant Interrupt_ID :=
121      System.OS_Interface.SIGCLD;      --  alias for SIGCHLD
122
123    SIGCHLD : constant Interrupt_ID :=
124      System.OS_Interface.SIGCHLD;     --  child status change
125
126    SIGPWR : constant Interrupt_ID :=
127      System.OS_Interface.SIGPWR;      --  power-fail restart
128
129    SIGWINCH : constant Interrupt_ID :=
130      System.OS_Interface.SIGWINCH;    --  window size change
131
132    SIGURG : constant Interrupt_ID :=
133      System.OS_Interface.SIGURG;      --  urgent condition on IO channel
134
135    SIGPOLL : constant Interrupt_ID :=
136      System.OS_Interface.SIGPOLL;     --  pollable event occurred
137
138    SIGIO : constant Interrupt_ID :=
139      System.OS_Interface.SIGIO;       --  I/O possible (Solaris SIGPOLL alias)
140
141    SIGSTOP : constant Interrupt_ID :=
142      System.OS_Interface.SIGSTOP;     --  stop (cannot be caught or ignored)
143
144    SIGTSTP : constant Interrupt_ID :=
145      System.OS_Interface.SIGTSTP;     --  user stop requested from tty
146
147    SIGCONT : constant Interrupt_ID :=
148      System.OS_Interface.SIGCONT;     --  stopped process has been continued
149
150    SIGTTIN : constant Interrupt_ID :=
151      System.OS_Interface.SIGTTIN;     --  background tty read attempted
152
153    SIGTTOU : constant Interrupt_ID :=
154      System.OS_Interface.SIGTTOU;     --  background tty write attempted
155
156    SIGVTALRM : constant Interrupt_ID :=
157      System.OS_Interface.SIGVTALRM;   --  virtual timer expired
158
159    SIGPROF : constant Interrupt_ID :=
160      System.OS_Interface.SIGPROF;     --  profiling timer expired
161
162    SIGXCPU : constant Interrupt_ID :=
163      System.OS_Interface.SIGXCPU;     --  CPU time limit exceeded
164
165    SIGXFSZ : constant Interrupt_ID :=
166      System.OS_Interface.SIGXFSZ;     --  filesize limit exceeded
167
168    SIGK32 : constant Interrupt_ID :=
169      System.OS_Interface.SIGK32;      --  reserved for kernel (IRIX)
170
171    SIGCKPT : constant Interrupt_ID :=
172      System.OS_Interface.SIGCKPT;     --  Checkpoint warning
173
174    SIGRESTART : constant Interrupt_ID :=
175      System.OS_Interface.SIGRESTART;  --  Restart warning
176
177    SIGUME : constant Interrupt_ID :=
178      System.OS_Interface.SIGUME;      --  Uncorrectable memory error
179
180    --  Signals defined for Posix 1003.1c.
181
182    SIGPTINTR : constant Interrupt_ID :=
183      System.OS_Interface.SIGPTINTR;    --  Pthread Interrupt Signal
184
185    SIGPTRESCHED : constant Interrupt_ID :=
186      System.OS_Interface.SIGPTRESCHED; --  Pthread Rescheduling Signal
187
188    --  Posix 1003.1b signals
189
190    SIGRTMIN : constant Interrupt_ID :=
191      System.OS_Interface.SIGRTMIN;    --  Posix 1003.1b signals
192
193    SIGRTMAX : constant Interrupt_ID :=
194      System.OS_Interface.SIGRTMAX;    --  Posix 1003.1b signals
195
196 end Ada.Interrupts.Names;