summaryrefslogtreecommitdiff
path: root/gcc/ada/s-vxwork-arm.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2007-06-06 10:17:12 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2007-06-06 10:17:12 +0000
commitd147058559303e1a8b473373ddde18648449b3cd (patch)
tree1c676d33315b7c63a188f16d2f3788213baba421 /gcc/ada/s-vxwork-arm.ads
parent661892d699ba1e514acdf68cc82c938de7627182 (diff)
downloadgcc-d147058559303e1a8b473373ddde18648449b3cd.tar.gz
2007-04-20 Jose Ruiz <ruiz@adacore.com>
* s-intman-vxworks.ads, s-intman-vxworks.adb (Abort_Task_Signal): Rename to Abort_Task_Interrupt to be able to keep the same interface as the rest of the targets. * s-osinte-vxworks.ads s-osinte-vxworks.adb (To_VxWorks_Priority): Remove explicit "in" mode indicator * s-osinte-vxworks6.ads, s-vxwork-arm.ads, system-vxworks-arm.ads: New files. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125372 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-vxwork-arm.ads')
-rw-r--r--gcc/ada/s-vxwork-arm.ads53
1 files changed, 53 insertions, 0 deletions
diff --git a/gcc/ada/s-vxwork-arm.ads b/gcc/ada/s-vxwork-arm.ads
new file mode 100644
index 00000000000..008e04cf9b1
--- /dev/null
+++ b/gcc/ada/s-vxwork-arm.ads
@@ -0,0 +1,53 @@
+------------------------------------------------------------------------------
+-- --
+-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
+-- --
+-- S Y S T E M . V X W O R K S --
+-- --
+-- S p e c --
+-- --
+-- Copyright (C) 1998-2005 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- --
+-- ware Foundation; either version 2, or (at your option) any later ver- --
+-- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
+-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
+-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
+-- for more details. You should have received a copy of the GNU General --
+-- Public License distributed with GNARL; see file COPYING. If not, write --
+-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
+-- Boston, MA 02110-1301, USA. --
+-- --
+-- As a special exception, if other files instantiate generics from this --
+-- unit, or you link this unit with other files to produce an executable, --
+-- this unit does not by itself cause the resulting executable to be --
+-- covered by the GNU General Public License. This exception does not --
+-- however invalidate any other reasons why the executable file might be --
+-- covered by the GNU Public License. --
+-- --
+-- GNARL was developed by the GNARL team at Florida State University. --
+-- Extensive contributions were provided by Ada Core Technologies, Inc. --
+-- --
+------------------------------------------------------------------------------
+
+-- This is the ARM VxWorks version of this package.
+
+package System.VxWorks is
+ pragma Preelaborate (System.VxWorks);
+
+ -- Floating point context record. ARM version
+
+ -- The record definition below matches what arch/arm/fppArmLib.h says.
+
+ type FP_CONTEXT is record
+ Dummy : Integer;
+ end record;
+
+ for FP_CONTEXT'Alignment use 4;
+ pragma Convention (C, FP_CONTEXT);
+
+ Num_HW_Interrupts : constant := 256;
+ -- Number of entries in hardware interrupt vector table.
+
+end System.VxWorks;