Changeset b4be04e in rtems for c/src/ada-tests/tmtests/tm03
- Timestamp:
- 06/03/97 20:24:11 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4b067069
- Parents:
- 7b93a327
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/tmtests/tm03/tmtest.ads
r7b93a327 rb4be04e 93 93 ); 94 94 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 name103 2048, -- stack size104 1, -- priority105 RTEMS.DEFAULT_ATTRIBUTES, -- attributes106 TMTEST.INIT'ACCESS, -- entry point107 RTEMS.NO_PREEMPT, -- initial mode108 0 -- argument list109 )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 BSP118 256 * 1024, -- executive RAM size119 111, -- maximum # tasks120 110, -- maximum # timers121 101, -- maximum # semaphores122 0, -- maximum # message queues123 0, -- maximum # messages124 0, -- maximum # partitions125 0, -- maximum # regions126 0, -- maximum # dp memory areas127 0, -- maximum # periods128 0, -- maximum # user extensions129 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick130 0 -- # ticks in a timeslice131 );132 133 95 end TMTEST;
Note: See TracChangeset
for help on using the changeset viewer.