Changeset d348ad96 in rtems for c/src/ada/rtems.ads
- Timestamp:
- 06/03/97 15:11:39 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c1ef834
- Parents:
- 7d366f1c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada/rtems.ads
r7d366f1c rd348ad96 10 10 -- 11 11 -- 12 -- COPYRIGHT (c) 19 89 - 1997.12 -- COPYRIGHT (c) 1997. 13 13 -- On-Line Applications Research Corporation (OAR). 14 -- 15 -- The license and distribution terms for this file may in 16 -- the file LICENSE in this distribution or at 17 -- http://www.OARcorp.com/rtems/license.html. 18 -- 19 -- $Id$ 14 20 -- 15 21 … … 21 27 package RTEMS is 22 28 23 Structure_Alignment : constant := 16;29 Structure_Alignment : constant := 8; 24 30 25 31 -- … … 74 80 subtype Option is RTEMS.Unsigned32; 75 81 subtype Task_Priority is RTEMS.Unsigned32; 76 subtype Notepad_Index is RTEMS.Unsigned32 ;82 subtype Notepad_Index is RTEMS.Unsigned32 range 0 .. 15; 77 83 78 84 subtype Event_Set is RTEMS.Unsigned32; … … 263 269 Yield_Processor : constant RTEMS.Interval := 0; 264 270 Current_Priority : constant RTEMS.Task_Priority := 0; 271 No_Priority : constant RTEMS.Task_Priority := 0; 265 272 266 273 … … 766 773 ) return Standard.Boolean; 767 774 775 function Subtract ( 776 Left : in RTEMS.Address; 777 Right : in RTEMS.Address 778 ) return RTEMS.Unsigned32; 779 768 780 -- 769 781 -- RTEMS API … … 999 1011 1000 1012 procedure Semaphore_Create ( 1001 Name : in RTEMS.Name; 1002 Count : in RTEMS.Unsigned32; 1003 Attribute_Set : in RTEMS.Attribute; 1004 ID : out RTEMS.ID; 1005 Result : out RTEMS.Status_Codes 1013 Name : in RTEMS.Name; 1014 Count : in RTEMS.Unsigned32; 1015 Attribute_Set : in RTEMS.Attribute; 1016 Priority_Ceiling : in RTEMS.Task_Priority; 1017 ID : out RTEMS.ID; 1018 Result : out RTEMS.Status_Codes 1006 1019 ); 1007 1020 … … 1385 1398 -- 1386 1399 1400 Debug_All_Mask : constant RTEMS.Debug_Set := 16#ffffffff#; 1401 Debug_Region : constant RTEMS.Debug_Set := 16#00000001#; 1402 1387 1403 procedure Debug_Enable ( 1388 1404 To_Be_Enabled : in RTEMS.Debug_Set
Note: See TracChangeset
for help on using the changeset viewer.