source: rtems/c/src/ada/rtems-multiprocessing.adb @ dc17e8ed

4.104.114.84.95
Last change on this file since dc17e8ed was 7003847, checked in by Joel Sherrill <joel.sherrill@…>, on 02/01/02 at 18:58:21

2001-02-01 Joel Sherrill <joel@…>

  • 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.
  • Property mode set to 100644
File size: 773 bytes
Line 
1--
2--  RTEMS Multiprocessing Manager/ Body
3-- 
4--  DESCRIPTION:
5-- 
6--  This package provides the interface to the Multiprocessing Manager
7--  of the RTEMS API.
8--
9--  DEPENDENCIES:
10--
11--
12--  COPYRIGHT (c) 1997.
13--  On-Line Applications Research Corporation (OAR).
14--
15--  The license and distribution terms for this file may in
16--  the file LICENSE in this distribution or at
17--  http://www.OARcorp.com/rtems/license.html.
18--
19--  $Id$
20--
21
22package body RTEMS.Multiprocessing is
23
24   --
25   --  Announce
26   --
27
28   procedure Announce is
29      procedure Multiprocessing_Announce_Base;
30      pragma Import (C, Multiprocessing_Announce_Base,
31         "rtems_multiprocessing_announce");
32   begin
33
34      Multiprocessing_Announce_Base;
35
36   end Announce;
37
38end RTEMS.Multiprocessing;
Note: See TracBrowser for help on using the repository browser.