source: rtems/c/src/ada/rtems-debug.ads @ 6273201

4.115
Last change on this file since 6273201 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 916 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.com/license/LICENSE.
20--
21
22package RTEMS.Debug is
23
24   subtype Set is RTEMS.Unsigned32;
25
26   --
27   --  Debug Manager
28   --
29
30   All_Mask : constant Set := 16#ffffffff#;
31   Region   : constant Set := 16#00000001#;
32
33   procedure Enable (
34      To_Be_Enabled : in     Set
35   );
36
37   procedure Disable (
38      To_Be_Disabled : in     Set
39   );
40
41   function Is_Enabled (
42      Level : in     Set
43   ) return RTEMS.Boolean;
44
45end RTEMS.Debug;
Note: See TracBrowser for help on using the repository browser.