source: rtems/c/src/ada/rtems-stack_checker.ads @ c499856

4.115
Last change on this file since c499856 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: 967 bytes
Line 
1--
2--  RTEMS / Specification
3--
4--  DESCRIPTION:
5--
6--  This package provides the interface to the RTEMS API.
7--
8--  DEPENDENCIES:
9--
10--  NOTES:
11--    RTEMS initialization and configuration are called from
12--    the BSP side, therefore should never be called from ADA.
13--
14--  COPYRIGHT (c) 1997-2011.
15--  On-Line Applications Research Corporation (OAR).
16--
17--  The license and distribution terms for this file may in
18--  the file LICENSE in this distribution or at
19--  http://www.rtems.org/license/LICENSE.
20--
21
22with System;
23with System.Storage_Elements; use System.Storage_Elements;
24with Interfaces;
25with Interfaces.C;
26
27package RTEMS.Stack_Checker is
28
29   --
30   --  Stack Bounds Checker
31   --
32
33   function Is_Blown return RTEMS.Boolean;
34   pragma Interface (C, Is_Blown);
35   pragma Interface_Name (Is_Blown, "rtems_stack_checker_is_blown");
36
37   procedure Report_Usage;
38   pragma Import (C, Report_Usage, "rtems_stack_checker_report_usage");
39
40end RTEMS.Stack_Checker;
41
Note: See TracBrowser for help on using the repository browser.