mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-21 12:24:55 +08:00
* rtems.ads, rtems.adb: Formatting cleaned up. Task based timer directives added. This is Timer_Initiate_Server, Timer_Server_Fire_After, and Timer_Server_Fire_When.
39 lines
773 B
Ada
39 lines
773 B
Ada
--
|
|
-- RTEMS Multiprocessing Manager/ Body
|
|
--
|
|
-- DESCRIPTION:
|
|
--
|
|
-- This package provides the interface to the Multiprocessing Manager
|
|
-- of the RTEMS API.
|
|
--
|
|
-- DEPENDENCIES:
|
|
--
|
|
--
|
|
-- COPYRIGHT (c) 1997.
|
|
-- 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.OARcorp.com/rtems/license.html.
|
|
--
|
|
-- $Id$
|
|
--
|
|
|
|
package body RTEMS.Multiprocessing is
|
|
|
|
--
|
|
-- Announce
|
|
--
|
|
|
|
procedure Announce is
|
|
procedure Multiprocessing_Announce_Base;
|
|
pragma Import (C, Multiprocessing_Announce_Base,
|
|
"rtems_multiprocessing_announce");
|
|
begin
|
|
|
|
Multiprocessing_Announce_Base;
|
|
|
|
end Announce;
|
|
|
|
end RTEMS.Multiprocessing;
|