summaryrefslogtreecommitdiffstats
path: root/c/src/ada/rtems-debug.adb
blob: d2c524720ff273beef979ebc9d2c58b19fa664cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
--
--  RTEMS / Body
--
--  DESCRIPTION:
--
--  This package provides the interface to the RTEMS API.
--
--
--  DEPENDENCIES:
--
--
--
--  COPYRIGHT (c) 1997-2011.
--  On-Line Applications Research Corporation (OAR).
--
--  The license and distribution terms for this file may in
--  the file LICENSE in this distribution or at
--  http://www.rtems.org/license/LICENSE.
--

package body RTEMS.Debug is

   --
   -- Debug Manager
   --

   procedure Enable (To_Be_Enabled : in Set) is
      procedure Enable_Base (To_Be_Enabled : Set);
      pragma Import (C, Enable_Base, "rtems_debug_enable");
   begin

      Enable_Base (To_Be_Enabled);

   end Enable;

   procedure Disable (To_Be_Disabled : in Set) is
      procedure Disable_Base (To_Be_Disabled : Set);
      pragma Import (C, Disable_Base, "rtems_debug_disable");
   begin

      Disable_Base (To_Be_Disabled);

   end Disable;

   function Is_Enabled
     (Level : in Set)
      return  RTEMS.Boolean
   is
      function Is_Enabled_Base
        (Level : Set)
         return  RTEMS.Boolean;
      pragma Import (C, Is_Enabled_Base, "rtems_debug_is_enabled");
   begin

      return Is_Enabled_Base (Level);

   end Is_Enabled;

end RTEMS.Debug;