2007-10-01 Joel Sherrill <joel.sherrill@OARcorp.com>

* rtems.adb, rtems.ads: Most of single processor Ada tests now build.
	Some run.
This commit is contained in:
Joel Sherrill
2007-10-01 22:57:52 +00:00
parent 1e7b8d32a0
commit f10fe70731
3 changed files with 27 additions and 0 deletions

View File

@@ -215,6 +215,21 @@ package body RTEMS is
-- RTEMS API
--
--
-- Initialization Manager -- Shutdown Only
--
procedure Shutdown_Executive (
Status : in RTEMS.Unsigned32
) is
procedure Shutdown_Executive_Base (
Status : RTEMS.Unsigned32
);
pragma Import (C, Shutdown_Executive_Base, "rtems_shutdown_executive");
begin
Shutdown_Executive_Base (Status);
end Shutdown_Executive;
--
-- Task Manager
--