1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . I N T E R R U P T _ M A N A G E M E N T --
9 -- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
11 -- GNARL is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNARL was developed by the GNARL team at Florida State University. --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
30 ------------------------------------------------------------------------------
32 -- This is the VxWorks version of this package
34 -- It is simpler than other versions because the Ada interrupt handling
35 -- mechanisms are used for hardware interrupts rather than signals.
37 package body System
.Interrupt_Management
is
39 use System
.OS_Interface
;
40 use type Interfaces
.C
.int
;
42 -----------------------
43 -- Local Subprograms --
44 -----------------------
46 function State
(Int
: Interrupt_ID
) return Character;
47 pragma Import
(C
, State
, "__gnat_get_interrupt_state");
48 -- Get interrupt state. Defined in init.c The input argument is the
49 -- hardware interrupt number, and the result is one of the following:
51 Runtime
: constant Character := 'r';
52 Default
: constant Character := 's';
53 -- 'n' this interrupt not set by any Interrupt_State pragma
54 -- 'u' Interrupt_State pragma set state to User
55 -- 'r' Interrupt_State pragma set state to Runtime
56 -- 's' Interrupt_State pragma set state to System (use "default"
63 Initialized
: Boolean := False;
64 -- Set to True once Initialize is called, further calls have no effect
66 procedure Initialize
is
75 -- Change this if you want to use another signal for task abort.
76 -- SIGTERM might be a good one.
78 Abort_Task_Interrupt
:= SIGABRT
;
80 -- Initialize hardware interrupt handling
82 pragma Assert
(Reserve
= (Interrupt_ID
'Range => False));
84 -- Check all interrupts for state that requires keeping them reserved
86 for J
in Interrupt_ID
'Range loop
87 if State
(J
) = Default
or else State
(J
) = Runtime
then
94 end System
.Interrupt_Management
;