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

4.115
Last change on this file since bd39add was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 756 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
20package body RTEMS.Multiprocessing is
21
22   --
23   --  Announce
24   --
25
26   procedure Announce is
27      procedure Multiprocessing_Announce_Base;
28      pragma Import (C, Multiprocessing_Announce_Base,
29         "rtems_multiprocessing_announce");
30   begin
31
32      Multiprocessing_Announce_Base;
33
34   end Announce;
35
36end RTEMS.Multiprocessing;
Note: See TracBrowser for help on using the repository browser.