OSDN Git Service

* haifa-sched.c (extend_global): Split to extend_global_data and
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-intnam-irix.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                  GNAT 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-2008, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNARL is free software; you can redistribute it  and/or modify it  under --
12 -- terms  of  the  GNU  Library General Public License  as published by the --
13 -- Free Software  Foundation;  either version 2, or (at  your  option)  any --
14 -- later  version.  GNARL is distributed  in the hope that  it will be use- --
15 -- ful, but  WITHOUT ANY WARRANTY;   without even the  implied  warranty of --
16 -- MERCHANTABILITY  or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
17 -- eral Library Public License  for more details.  You should have received --
18 -- a  copy of the GNU Library General Public License along with GNARL;  see --
19 -- file COPYING.LIB.  If not,  write to the  Free Software Foundation,   51 --
20 -- Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.                --
21 --                                                                          --
22 -- As a special exception,  if other files  instantiate  generics from this --
23 -- unit, or you link  this unit with other files  to produce an executable, --
24 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
25 -- covered  by the  GNU  General  Public  License.  This exception does not --
26 -- however invalidate  any other reasons why  the executable file  might be --
27 -- covered by the  GNU Public License.                                      --
28 --                                                                          --
29 -- GNARL was developed by the GNARL team at Florida State University.       --
30 -- Extensive contributions were provided by Ada Core Technologies, Inc.     --
31 --                                                                          --
32 ------------------------------------------------------------------------------
33
34 --  This is the Irix version of this package
35
36 --  The following signals are reserved by the run time (Athread library):
37
38 --  SIGFPE, SIGILL, SIGSEGV, SIGBUS, SIGTRAP, SIGSTOP, SIGKILL
39
40 --  The following signals are reserved by the run time (Pthread library):
41
42 --  SIGTSTP, SIGILL, SIGTRAP, SIGEMT, SIGFPE, SIGBUS, SIGSTOP, SIGKILL,
43 --  SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ, SIGPROF, SIGPTINTR, SIGPTRESCHED,
44 --  SIGABRT, SIGINT
45
46 --  The pragma Unreserve_All_Interrupts affects the following signal
47 --  (Pthread library):
48
49 --  SIGINT: made available for Ada handler
50
51 --  This target-dependent package spec contains names of interrupts
52 --  supported by the local system.
53
54 with System.OS_Interface;
55
56 package Ada.Interrupts.Names is
57
58    --  Beware that the mapping of names to signals may be many-to-one. There
59    --  may be aliases. Also, for all signal names that are not supported on
60    --  the current system the value of the corresponding constant will be zero.
61
62    SIGHUP : constant Interrupt_ID :=
63      System.OS_Interface.SIGHUP;      --  hangup
64
65    SIGINT : constant Interrupt_ID :=
66      System.OS_Interface.SIGINT;      --  interrupt (rubout)
67
68    SIGQUIT : constant Interrupt_ID :=
69      System.OS_Interface.SIGQUIT;     --  quit (ASCD FS)
70
71    SIGILL : constant Interrupt_ID :=
72      System.OS_Interface.SIGILL;      --  illegal instruction (not reset)
73
74    SIGTRAP : constant Interrupt_ID :=
75      System.OS_Interface.SIGTRAP;     --  trace trap (not reset)
76
77    SIGIOT : constant Interrupt_ID :=
78      System.OS_Interface.SIGIOT;      --  IOT instruction
79
80    SIGABRT : constant Interrupt_ID :=
81      System.OS_Interface.SIGABRT;     --  used by abort, replace SIGIOT in the
82    --                                     future
83
84    SIGEMT : constant Interrupt_ID :=
85      System.OS_Interface.SIGEMT;      --  EMT instruction
86
87    SIGFPE : constant Interrupt_ID :=
88      System.OS_Interface.SIGFPE;      --  floating point exception
89
90    SIGKILL : constant Interrupt_ID :=
91      System.OS_Interface.SIGKILL;     --  kill (cannot be caught or ignored)
92
93    SIGBUS : constant Interrupt_ID :=
94      System.OS_Interface.SIGBUS;      --  bus error
95
96    SIGSEGV : constant Interrupt_ID :=
97      System.OS_Interface.SIGSEGV;     --  segmentation violation
98
99    SIGSYS : constant Interrupt_ID :=
100      System.OS_Interface.SIGSYS;      --  bad argument to system call
101
102    SIGPIPE : constant Interrupt_ID :=
103      System.OS_Interface.SIGPIPE;     --  write on pipe with no one to read it
104
105    SIGALRM : constant Interrupt_ID :=
106      System.OS_Interface.SIGALRM;     --  alarm clock
107
108    SIGTERM : constant Interrupt_ID :=
109      System.OS_Interface.SIGTERM;     --  software termination signal from kill
110
111    SIGUSR1 : constant Interrupt_ID :=
112      System.OS_Interface.SIGUSR1;     --  user defined signal 1
113
114    SIGUSR2 : constant Interrupt_ID :=
115      System.OS_Interface.SIGUSR2;     --  user defined signal 2
116
117    SIGCLD : constant Interrupt_ID :=
118      System.OS_Interface.SIGCLD;      --  alias for SIGCHLD
119
120    SIGCHLD : constant Interrupt_ID :=
121      System.OS_Interface.SIGCHLD;     --  child status change
122
123    SIGPWR : constant Interrupt_ID :=
124      System.OS_Interface.SIGPWR;      --  power-fail restart
125
126    SIGWINCH : constant Interrupt_ID :=
127      System.OS_Interface.SIGWINCH;    --  window size change
128
129    SIGURG : constant Interrupt_ID :=
130      System.OS_Interface.SIGURG;      --  urgent condition on IO channel
131
132    SIGPOLL : constant Interrupt_ID :=
133      System.OS_Interface.SIGPOLL;     --  pollable event occurred
134
135    SIGIO : constant Interrupt_ID :=
136      System.OS_Interface.SIGIO;       --  I/O possible (Solaris SIGPOLL alias)
137
138    SIGSTOP : constant Interrupt_ID :=
139      System.OS_Interface.SIGSTOP;     --  stop (cannot be caught or ignored)
140
141    SIGTSTP : constant Interrupt_ID :=
142      System.OS_Interface.SIGTSTP;     --  user stop requested from tty
143
144    SIGCONT : constant Interrupt_ID :=
145      System.OS_Interface.SIGCONT;     --  stopped process has been continued
146
147    SIGTTIN : constant Interrupt_ID :=
148      System.OS_Interface.SIGTTIN;     --  background tty read attempted
149
150    SIGTTOU : constant Interrupt_ID :=
151      System.OS_Interface.SIGTTOU;     --  background tty write attempted
152
153    SIGVTALRM : constant Interrupt_ID :=
154      System.OS_Interface.SIGVTALRM;   --  virtual timer expired
155
156    SIGPROF : constant Interrupt_ID :=
157      System.OS_Interface.SIGPROF;     --  profiling timer expired
158
159    SIGXCPU : constant Interrupt_ID :=
160      System.OS_Interface.SIGXCPU;     --  CPU time limit exceeded
161
162    SIGXFSZ : constant Interrupt_ID :=
163      System.OS_Interface.SIGXFSZ;     --  filesize limit exceeded
164
165    SIGK32 : constant Interrupt_ID :=
166      System.OS_Interface.SIGK32;      --  reserved for kernel (IRIX)
167
168    SIGCKPT : constant Interrupt_ID :=
169      System.OS_Interface.SIGCKPT;     --  Checkpoint warning
170
171    SIGRESTART : constant Interrupt_ID :=
172      System.OS_Interface.SIGRESTART;  --  Restart warning
173
174    SIGUME : constant Interrupt_ID :=
175      System.OS_Interface.SIGUME;      --  Uncorrectable memory error
176
177    --  Signals defined for Posix 1003.1c
178
179    SIGPTINTR : constant Interrupt_ID :=
180      System.OS_Interface.SIGPTINTR;    --  Pthread Interrupt Signal
181
182    SIGPTRESCHED : constant Interrupt_ID :=
183      System.OS_Interface.SIGPTRESCHED; --  Pthread Rescheduling Signal
184
185    --  Posix 1003.1b signals
186
187    SIGRTMIN : constant Interrupt_ID :=
188      System.OS_Interface.SIGRTMIN;    --  Posix 1003.1b signals
189
190    SIGRTMAX : constant Interrupt_ID :=
191      System.OS_Interface.SIGRTMAX;    --  Posix 1003.1b signals
192
193 end Ada.Interrupts.Names;