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

4.104.114.84.95
Last change on this file since 7be6ad9 was dcdb62d, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:53:57

2003-09-04 Joel Sherrill <joel@…>

  • rtems-multiprocessing.adb, rtems-multiprocessing.ads, rtems.adb, rtems.ads: URL for license changed.
  • Property mode set to 100644
File size: 768 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.rtems.com/license/LICENSE.
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.