Move Ada includes

Update #3254.
This commit is contained in:
Sebastian Huber
2017-11-24 13:20:16 +01:00
parent affb282b11
commit 0d5c795afa
44 changed files with 206 additions and 41 deletions

View File

@@ -0,0 +1,36 @@
--
-- 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.rtems.org/license/LICENSE.
--
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;