Changeset 4fd88bc in rtems for c/src/ada-tests/samples/hello


Ignore:
Timestamp:
06/03/97 22:52:34 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
8640cc99
Parents:
5d0f4a56
Message:

Removed configuration information.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/ada-tests/samples/hello/sptest.ads

    r5d0f4a56 r4fd88bc  
    4646   );
    4747
    48 --
    49 --  No Device Drivers for this test.
    50 --
    51 
    52 --
    53 --  This is the Initialization Tasks Table for this test.
    54 --
    55 
    56    INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=
    57    (1=>
    58      (
    59        RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ),        -- task name
    60        2048,                                          -- stack size
    61        1,                                             -- priority
    62        RTEMS.DEFAULT_ATTRIBUTES,                      -- attributes
    63        SPTEST.INIT'ACCESS,                            -- entry point
    64        RTEMS.NO_PREEMPT,                              -- initial mode
    65        0                                              -- argument list
    66      )
    67    );
    68 
    69 --
    70 --  This is the Configuration Table for this test.
    71 --
    72 
    73    CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (
    74       RTEMS.NULL_ADDRESS,        -- will be replaced by BSP
    75       64 * 1024,                 -- executive RAM size
    76       10,                        -- maximum # tasks
    77       0,                         -- maximum # timers
    78       0,                         -- maximum # semaphores
    79       0,                         -- maximum # message queues
    80       0,                         -- maximum # messages
    81       0,                         -- maximum # partitions
    82       0,                         -- maximum # regions
    83       0,                         -- maximum # dp memory areas
    84       0,                         -- maximum # periods
    85       0,                         -- maximum # user extensions
    86       RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick
    87       50                         -- # ticks in a timeslice
    88   );
    89 
    9048end SPTEST;
Note: See TracChangeset for help on using the changeset viewer.