2008-05-06 Joel Sherrill <joel.sherrill@oarcorp.com>

* rtems.adb, rtems.ads: Fix prototype.
This commit is contained in:
Joel Sherrill
2008-05-06 23:17:28 +00:00
parent f5f4566a5f
commit 0442eed68c
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2008-05-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems.adb, rtems.ads: Fix prototype.
2008-03-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems.adb, rtems.ads: Refactored rtems_clock_get into 5 methods

View File

@@ -1170,7 +1170,7 @@ package body RTEMS is
Buffer : in RTEMS.Address;
Option_Set : in RTEMS.Option;
Timeout : in RTEMS.Interval;
Size : out RTEMS.Unsigned32;
Size : in out RTEMS.Unsigned32;
Result : out RTEMS.Status_Codes
) is
function Message_Queue_Receive_Base (
@@ -1185,6 +1185,8 @@ package body RTEMS is
Size_Base : aliased RTEMS.Unsigned32;
begin
Size_Base := Size;
Result := Message_Queue_Receive_Base (
ID,
Buffer,

View File

@@ -973,7 +973,7 @@ pragma Elaborate_Body (RTEMS);
Buffer : in RTEMS.Address;
Option_Set : in RTEMS.Option;
Timeout : in RTEMS.Interval;
Size : out RTEMS.Unsigned32;
Size : in out RTEMS.Unsigned32;
Result : out RTEMS.Status_Codes
);