Changeset 0ae745c in rtems
- Timestamp:
- 11/25/03 14:07:32 (20 years ago)
- Children:
- f1fcb459
- Parents:
- 106942b
- Location:
- cpukit/ada
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ada/ChangeLog
r106942b r0ae745c 1 2003-11-25 Joel Sherrill <joel@OARcorp.com> 2 3 PR 528/rtems_misc 4 * rtems.ads: Add task variables to Ada binding. 5 1 6 2003-09-04 Joel Sherrill <joel@OARcorp.com> 2 7 -
cpukit/ada/rtems.ads
r106942b r0ae745c 898 898 Result : out RTEMS.Status_Codes 899 899 ); 900 901 type Task_Variable_Dtor is access procedure ( 902 Argument : in RTEMS.Address; 903 ); 904 905 procedure Task_Variable_Add ( 906 ID : in RTEMS.ID; 907 Task_Variable : in RTEMS.Address; 908 Dtor : in RTEMS.Task_Variable_Dtor; 909 Result : out RTEMS.Status_Codes 910 ); 911 912 procedure Task_Variable_Get ( 913 ID : in RTEMS.ID; 914 Task_Variable : out RTEMS.Address; 915 Task_Variable_Value : out RTEMS.Address; 916 Result : out RTEMS.Status_Codes 917 ); 918 919 procedure Task_Variable_Delete ( 920 ID : in RTEMS.ID; 921 Task_Variable : out RTEMS.Address; 922 Result : out RTEMS.Status_Codes 923 ); 900 924 901 925 procedure Task_Wake_When (
Note: See TracChangeset
for help on using the changeset viewer.