aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorOlivier Hainque <hainque@adacore.com>2008-04-08 08:46:41 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2008-04-08 08:46:41 +0200
commit7f335c645dfac32c3697548434e25029b2e0b1ce (patch)
treee9096e08065d54a563ef473ac93537efc384a4ee /gcc
parentc54ec67ce7019a0f5212ca95054cfe972c587b21 (diff)
downloadgcc-7f335c645dfac32c3697548434e25029b2e0b1ce.zip
gcc-7f335c645dfac32c3697548434e25029b2e0b1ce.tar.gz
gcc-7f335c645dfac32c3697548434e25029b2e0b1ce.tar.bz2
2008-04-08 Olivier Hainque <hainque@adacore.com>
* s-intman-vxworks.ads, s-intman-vxworks.adb (Map_And_Raise_Exception): Remove. Was an import of only part of the required services already implemented elsewhere. (Notify_Exception): Delete body, import __gnat_error_handler instead. (Initialize): Add SA_SIGINFO to the sa_flags, to get the sigcontext argument passed to the handler, which we need for ZCX propagation purposes. From-SVN: r134016
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/s-intman-vxworks.adb35
-rw-r--r--gcc/ada/s-intman-vxworks.ads6
2 files changed, 12 insertions, 29 deletions
diff --git a/gcc/ada/s-intman-vxworks.adb b/gcc/ada/s-intman-vxworks.adb
index a7c0b7f..65617de 100644
--- a/gcc/ada/s-intman-vxworks.adb
+++ b/gcc/ada/s-intman-vxworks.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2008, Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -49,8 +49,11 @@ package body System.Interrupt_Management is
Exception_Action : aliased struct_sigaction;
-- Keep this variable global so that it is initialized only once
- procedure Map_And_Raise_Exception (signo : Signal);
- pragma Import (C, Map_And_Raise_Exception, "__gnat_map_signal");
+ procedure Notify_Exception
+ (signo : Signal;
+ siginfo : System.Address;
+ sigcontext : System.Address);
+ pragma Import (C, Notify_Exception, "__gnat_error_handler");
-- Map signal to Ada exception and raise it. Different versions
-- of VxWorks need different mappings.
@@ -71,28 +74,6 @@ package body System.Interrupt_Management is
-- 's' Interrupt_State pragma set state to System (use "default"
-- system handler)
- procedure Notify_Exception (signo : Signal);
- -- Identify the Ada exception to be raised using
- -- the information when the system received a synchronous signal.
-
- ----------------------
- -- Notify_Exception --
- ----------------------
-
- procedure Notify_Exception (signo : Signal) is
- Mask : aliased sigset_t;
-
- Result : int;
- pragma Unreferenced (Result);
-
- begin
- Result := pthread_sigmask (SIG_SETMASK, null, Mask'Access);
- Result := sigdelset (Mask'Access, signo);
- Result := pthread_sigmask (SIG_SETMASK, Mask'Access, null);
-
- Map_And_Raise_Exception (signo);
- end Notify_Exception;
-
---------------------------
-- Initialize_Interrupts --
---------------------------
@@ -118,10 +99,12 @@ package body System.Interrupt_Management is
----------------
Initialized : Boolean := False;
+ -- Set to True once Initialize is called, further calls have no effect
procedure Initialize is
mask : aliased sigset_t;
Result : int;
+
begin
if Initialized then
return;
@@ -135,7 +118,7 @@ package body System.Interrupt_Management is
Abort_Task_Interrupt := SIGABRT;
Exception_Action.sa_handler := Notify_Exception'Address;
- Exception_Action.sa_flags := SA_ONSTACK;
+ Exception_Action.sa_flags := SA_ONSTACK + SA_SIGINFO;
Result := sigemptyset (mask'Access);
pragma Assert (Result = 0);
diff --git a/gcc/ada/s-intman-vxworks.ads b/gcc/ada/s-intman-vxworks.ads
index 538c4e5..b249301 100644
--- a/gcc/ada/s-intman-vxworks.ads
+++ b/gcc/ada/s-intman-vxworks.ads
@@ -103,9 +103,9 @@ package System.Interrupt_Management is
-- each task.
procedure Initialize;
- -- Initialize the various variables defined in this package.
- -- This procedure must be called before accessing any object from this
- -- package and can be called multiple times.
+ -- Initialize the various variables defined in this package. This procedure
+ -- must be called before accessing any object from this package and can be
+ -- called multiple times (only the first call has any effect).
private
type Interrupt_Mask is new System.OS_Interface.sigset_t;