Changeset 08c192b in rtems


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

Removed Configuration Information.

File:
1 edited

Legend:

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

    r8640cc99 r08c192b  
    5858   );
    5959
    60 --
    61 --  This is the Driver Address Table for this test.
    62 --
    63 
    64    DEVICE_DRIVERS : aliased RTEMS.DRIVER_ADDRESS_TABLE( 1 .. 1 ) :=
    65    (1=>
    66       (
    67         CLOCK_DRIVER.INITIALIZE'ACCESS,              -- Initialization
    68         RTEMS.NO_DRIVER_ENTRY,                       -- Open
    69         RTEMS.NO_DRIVER_ENTRY,                       -- Close
    70         RTEMS.NO_DRIVER_ENTRY,                       -- Read
    71         RTEMS.NO_DRIVER_ENTRY,                       -- Write
    72         RTEMS.NO_DRIVER_ENTRY                        -- Control
    73       )
    74    );
    75 
    76 --
    77 --  This is the Initialization Tasks Table for this test.
    78 --
    79 
    80    INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=
    81    (1=>
    82      (
    83        RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ),        -- task name
    84        2048,                                          -- stack size
    85        1,                                             -- priority
    86        RTEMS.DEFAULT_ATTRIBUTES,                      -- attributes
    87        SPTEST.INIT'ACCESS,                            -- entry point
    88        RTEMS.NO_PREEMPT,                              -- initial mode
    89        0                                              -- argument list
    90      )
    91    );
    92 
    93 --
    94 --  This is the Configuration Table for this test.
    95 --
    96 
    97    CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (
    98       RTEMS.NULL_ADDRESS,        -- will be replaced by BSP
    99       64 * 1024,                 -- executive RAM size
    100       10,                        -- maximum # tasks
    101       0,                         -- maximum # timers
    102       0,                         -- maximum # semaphores
    103       0,                         -- maximum # message queues
    104       0,                         -- maximum # messages
    105       0,                         -- maximum # partitions
    106       0,                         -- maximum # regions
    107       0,                         -- maximum # dp memory areas
    108       0,                         -- maximum # periods
    109       0,                         -- maximum # user extensions
    110       RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick
    111       50                         -- # ticks in a timeslice
    112   );
    113 
    11460end SPTEST;
Note: See TracChangeset for help on using the changeset viewer.