2005-05-23 Joel Sherrill <joel@OARcorp.com>

PR rtems_misc/795
	* rtems.ads: Fix parameter ordering.
This commit is contained in:
Joel Sherrill
2005-05-23 15:00:03 +00:00
parent aea8e66bce
commit cb6fc17b4f
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2005-05-23 Joel Sherrill <joel@OARcorp.com>
PR rtems_misc/795
* rtems.ads: Fix parameter ordering.
2005-05-03 Joel Sherrill <joel@OARcorp.com>
* rtems.adb: Remove gcc 4.x warnings.

View File

@@ -1302,8 +1302,8 @@ pragma Elaborate_Body (RTEMS);
procedure Region_Resize_Segment (
ID : in RTEMS.ID;
Segment : in RTEMS.Address;
Old_Size : in RTEMS.Unsigned32;
Size : out RTEMS.Unsigned32;
Size : in RTEMS.Unsigned32;
Old_Size : out RTEMS.Unsigned32;
Result : out RTEMS.Status_Codes
);