forked from Imagelibrary/rtems
* ada/Makefile.am, ada/preinstall.am, ada/rtems.adb, ada/rtems.ads: Split RTEMS Ada95 binding into a master package and a child package per Manager. This is better Ada style. * ada/rtems-barrier.adb, ada/rtems-barrier.ads, ada/rtems-clock.adb, ada/rtems-clock.ads, ada/rtems-cpu_usage.ads, ada/rtems-debug.adb, ada/rtems-debug.ads, ada/rtems-event.adb, ada/rtems-event.ads, ada/rtems-extension.adb, ada/rtems-extension.ads, ada/rtems-fatal.adb, ada/rtems-fatal.ads, ada/rtems-interrupt.ads, ada/rtems-io.adb, ada/rtems-io.ads, ada/rtems-message_queue.adb, ada/rtems-message_queue.ads, ada/rtems-object.adb, ada/rtems-object.ads, ada/rtems-partition.adb, ada/rtems-partition.ads, ada/rtems-port.adb, ada/rtems-port.ads, ada/rtems-rate_monotonic.adb, ada/rtems-rate_monotonic.ads, ada/rtems-region.adb, ada/rtems-region.ads, ada/rtems-semaphore.adb, ada/rtems-semaphore.ads, ada/rtems-signal.adb, ada/rtems-signal.ads, ada/rtems-stack_checker.ads, ada/rtems-tasks.adb, ada/rtems-tasks.ads, ada/rtems-timer.adb, ada/rtems-timer.ads: New files.
62 lines
1.2 KiB
Ada
62 lines
1.2 KiB
Ada
--
|
|
-- 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.com/license/LICENSE.
|
|
--
|
|
-- $Id$
|
|
--
|
|
|
|
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;
|