2003-02-03 Joel Sherrill <joel@OARcorp.com>

PR 338/filesystem
	* rtems.adb, rtems.ads: Side-effect of fixing reentrancy problem with
	rtems_io_lookup_name() (API change).
This commit is contained in:
Joel Sherrill
2003-02-03 23:57:10 +00:00
parent da2151f40d
commit 81968b9a6e
6 changed files with 22 additions and 8 deletions

View File

@@ -1,3 +1,9 @@
2003-02-03 Joel Sherrill <joel@OARcorp.com>
PR 338/filesystem
* rtems.adb, rtems.ads: Side-effect of fixing reentrancy problem with
rtems_io_lookup_name() (API change).
2003-01-03 Joel Sherrill <joel@OARcorp.com>
* rtems.ads: Corrected Configuration_Table record definition to

View File

@@ -10,7 +10,7 @@
--
--
--
-- COPYRIGHT (c) 1997.
-- COPYRIGHT (c) 1997-2003.
-- On-Line Applications Research Corporation (OAR).
--
-- The license and distribution terms for this file may in
@@ -1650,7 +1650,7 @@ package body RTEMS is
procedure IO_Lookup_Name (
Name : in String;
Device_Info : out RTEMS.Driver_Name_t;
Device_Info : in RTEMS.Driver_Name_t_Pointer;
Result : out RTEMS.Status_Codes
) is
function IO_Lookup_Name_Base (

View File

@@ -174,9 +174,10 @@ pragma Elaborate_Body (RTEMS);
Device_Name_Length : RTEMS.Unsigned32;
Major : RTEMS.Device_Major_Number;
Minor : RTEMS.Device_Minor_Number;
end record;
type Driver_Name_t_Pointer is access all Driver_Name_t;
--
-- Ident Options
--
@@ -1339,7 +1340,7 @@ pragma Elaborate_Body (RTEMS);
procedure IO_Lookup_Name (
Name : in String;
Device_Info : out RTEMS.Driver_Name_t;
Device_Info : In RTEMS.Driver_Name_t_Pointer;
Result : out RTEMS.Status_Codes
);