Fixed all references to Semaphore_Create to have the correct

argument sequence.
This commit is contained in:
Joel Sherrill
1997-06-03 21:43:20 +00:00
parent 9db72b4ba8
commit c7f646b5f7
7 changed files with 12 additions and 5 deletions

View File

@@ -133,6 +133,7 @@ package body TMTEST is
RTEMS.BUILD_NAME( 'S', 'M', '1', ' ' ),
0,
RTEMS.DEFAULT_ATTRIBUTES,
RTEMS.NO_PRIORITY,
TMTEST.SEMAPHORE_ID,
STATUS
);

View File

@@ -85,6 +85,7 @@ package body TMTEST is
RTEMS.BUILD_NAME( 'S', 'M', '1', ' ' ),
0,
RTEMS.DEFAULT_ATTRIBUTES,
RTEMS.NO_PRIORITY,
TMTEST.SEMAPHORE_ID,
STATUS
);

View File

@@ -93,6 +93,7 @@ package body TMTEST is
RTEMS.BUILD_NAME( 'S', 'M', '1', ' ' ),
0,
RTEMS.DEFAULT_ATTRIBUTES,
RTEMS.NO_PRIORITY,
TMTEST.SEMAPHORE_ID,
STATUS
);

View File

@@ -106,6 +106,7 @@ package body TMTEST is
INDEX,
TIME_TEST_SUPPORT.OPERATION_COUNT,
RTEMS.DEFAULT_ATTRIBUTES,
RTEMS.NO_PRIORITY,
ID,
STATUS
);

View File

@@ -51,6 +51,7 @@ package body TMTEST is
RTEMS.BUILD_NAME( 'S', 'M', '1', ' ' ),
0,
RTEMS.DEFAULT_ATTRIBUTES,
RTEMS.NO_PRIORITY,
TMTEST.SEMAPHORE_ID,
STATUS
);

View File

@@ -331,11 +331,12 @@ package body DUMMY_RTEMS is
-- Semaphore Manager
procedure SEMAPHORE_CREATE (
NAME : in RTEMS.NAME;
COUNT : in RTEMS.UNSIGNED32;
ATTRIBUTE_SET : in RTEMS.ATTRIBUTE;
ID : out RTEMS.ID;
RESULT : out RTEMS.STATUS_CODES
NAME : in RTEMS.NAME;
COUNT : in RTEMS.UNSIGNED32;
ATTRIBUTE_SET : in RTEMS.ATTRIBUTE;
PRIORITY_CEILING : in RTEMS.TASK_PRIORITY;
ID : out RTEMS.ID;
RESULT : out RTEMS.STATUS_CODES
) is
begin

View File

@@ -661,6 +661,7 @@ TEST_SUPPORT.PAUSE;
NAME,
128,
RTEMS.DEFAULT_ATTRIBUTES,
RTEMS.NO_PRIORITY,
ID,
STATUS
);