mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 22:48:23 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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 (
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user