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.3 KiB
Ada
62 lines
1.3 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.Signal is
|
|
|
|
--
|
|
-- Signal Manager
|
|
--
|
|
|
|
procedure Catch
|
|
(ASR_Handler : in RTEMS.ASR_Handler;
|
|
Mode_Set : in RTEMS.Mode;
|
|
Result : out RTEMS.Status_Codes)
|
|
is
|
|
function Catch_Base
|
|
(ASR_Handler : RTEMS.ASR_Handler;
|
|
Mode_Set : RTEMS.Mode)
|
|
return RTEMS.Status_Codes;
|
|
pragma Import (C, Catch_Base, "rtems_signal_catch");
|
|
begin
|
|
|
|
Result := Catch_Base (ASR_Handler, Mode_Set);
|
|
|
|
end Catch;
|
|
|
|
procedure Send
|
|
(ID : in RTEMS.ID;
|
|
Signal_Set : in RTEMS.Signal_Set;
|
|
Result : out RTEMS.Status_Codes)
|
|
is
|
|
function Send_Base
|
|
(ID : RTEMS.ID;
|
|
Signal_Set : RTEMS.Signal_Set)
|
|
return RTEMS.Status_Codes;
|
|
pragma Import (C, Send_Base, "rtems_signal_send");
|
|
begin
|
|
|
|
Result := Send_Base (ID, Signal_Set);
|
|
|
|
end Send;
|
|
|
|
end RTEMS.Signal;
|