Changeset b4be04e in rtems for c/src/ada-tests/tmtests/tm03


Ignore:
Timestamp:
06/03/97 20:24:11 (26 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
4b067069
Parents:
7b93a327
Message:

Removed Configuration Table information.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/ada-tests/tmtests/tm03/tmtest.ads

    r7b93a327 rb4be04e  
    9393   );
    9494
    95 --
    96 --  This is the Initialization Tasks Table for this test.
    97 --
    98 
    99    INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=
    100    (1=>
    101      (
    102        RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ),        -- task name
    103        2048,                                          -- stack size
    104        1,                                             -- priority
    105        RTEMS.DEFAULT_ATTRIBUTES,                      -- attributes
    106        TMTEST.INIT'ACCESS,                            -- entry point
    107        RTEMS.NO_PREEMPT,                              -- initial mode
    108        0                                              -- argument list
    109      )
    110    );
    111 
    112 --
    113 --  This is the Configuration Table for this test.
    114 --
    115 
    116    CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (
    117       RTEMS.NULL_ADDRESS,        -- will be replaced by BSP
    118       256 * 1024,                -- executive RAM size
    119       111,                       -- maximum # tasks
    120       110,                       -- maximum # timers
    121       101,                       -- maximum # semaphores
    122       0,                         -- maximum # message queues
    123       0,                         -- maximum # messages
    124       0,                         -- maximum # partitions
    125       0,                         -- maximum # regions
    126       0,                         -- maximum # dp memory areas
    127       0,                         -- maximum # periods
    128       0,                         -- maximum # user extensions
    129       RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick
    130       0                          -- # ticks in a timeslice
    131   );
    132 
    13395end TMTEST;
Note: See TracChangeset for help on using the changeset viewer.