Changeset e351c26a in rtems


Ignore:
Timestamp:
06/03/97 15:25:28 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
4db9c861
Parents:
4c3340c
Message:

sptest.adb: update Semaphore_Create calling sequence

sp12.adb: doubled the initialization task stack size

Location:
c/src/ada-tests/sptests/sp12
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/ada-tests/sptests/sp12/sp12.adb

    r4c3340c re351c26a  
    2121--
    2222
     23with Interfaces; use Interfaces;
    2324with RTEMS;
    2425with SPTEST;
     
    3334      RTEMS.BUILD_NAME(  'I', 'N', 'I', 'T' ),
    3435      1,
    35       RTEMS.MINIMUM_STACK_SIZE,
     36      RTEMS.MINIMUM_STACK_SIZE * 2,
    3637      RTEMS.NO_PREEMPT,
    3738      RTEMS.DEFAULT_ATTRIBUTES,
  • c/src/ada-tests/sptests/sp12/sptest.adb

    r4c3340c re351c26a  
    6969         1,
    7070         RTEMS.DEFAULT_ATTRIBUTES,
     71         RTEMS.NO_PRIORITY,
    7172         SPTEST.SEMAPHORE_ID( 1 ),
    7273         STATUS
     
    7879         0,
    7980         RTEMS.PRIORITY,
     81         RTEMS.NO_PRIORITY,
    8082         SPTEST.SEMAPHORE_ID( 2 ),
    8183         STATUS
     
    8789         1,
    8890         RTEMS.DEFAULT_ATTRIBUTES,
     91         RTEMS.NO_PRIORITY,
    8992         SPTEST.SEMAPHORE_ID( 3 ),
    9093         STATUS
     
    114117         0,
    115118         RTEMS.BINARY_SEMAPHORE + RTEMS.PRIORITY + RTEMS.INHERIT_PRIORITY,
     119         RTEMS.NO_PRIORITY,
    116120         SPTEST.SEMAPHORE_ID( 2 ),
    117121         STATUS
     
    135139         1,
    136140         RTEMS.BINARY_SEMAPHORE + RTEMS.PRIORITY + RTEMS.INHERIT_PRIORITY,
     141         RTEMS.NO_PRIORITY,
    137142         SPTEST.SEMAPHORE_ID( 2 ),
    138143         STATUS
     
    151156         0,
    152157         RTEMS.PRIORITY,
     158         RTEMS.NO_PRIORITY,
    153159         SPTEST.SEMAPHORE_ID( 2 ),
    154160         STATUS
Note: See TracChangeset for help on using the changeset viewer.