source: rtems/c/src/ada/rtems-fatal.adb @ 32c8960

4.115
Last change on this file since 32c8960 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 741 bytes
Line 
1--
2--  RTEMS / Body
3--
4--  DESCRIPTION:
5--
6--  This package provides the interface to the RTEMS API.
7--
8--
9--  DEPENDENCIES:
10--
11--
12--
13--  COPYRIGHT (c) 1997-2011.
14--  On-Line Applications Research Corporation (OAR).
15--
16--  The license and distribution terms for this file may in
17--  the file LICENSE in this distribution or at
18--  http://www.rtems.org/license/LICENSE.
19--
20
21package body RTEMS.Fatal is
22
23   --
24   -- Fatal Error Manager
25   --
26
27   procedure Error_Occurred (The_Error : in RTEMS.Unsigned32) is
28      procedure Error_Occurred_Base (The_Error : RTEMS.Unsigned32);
29      pragma Import (C, Error_Occurred_Base, "rtems_fatal_error_occurred");
30   begin
31
32      Error_Occurred_Base (The_Error);
33
34   end Error_Occurred;
35
36end RTEMS.Fatal;
Note: See TracBrowser for help on using the repository browser.