Changeset b67e6ec in rtems for c/src/ada-tests/tmtests
- Timestamp:
- Jun 3, 1997, 8:20:23 PM (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7b93a327
- Parents:
- 43437e97
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/tmtests/tm01/tmtest.ads
r43437e97 rb67e6ec 66 66 ); 67 67 68 --69 -- This is the Initialization Tasks Table for this test.70 --71 72 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=73 (1=>74 (75 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name76 2048, -- stack size77 1, -- priority78 RTEMS.DEFAULT_ATTRIBUTES, -- attributes79 TMTEST.INIT'ACCESS, -- entry point80 RTEMS.NO_PREEMPT, -- initial mode81 0 -- argument list82 )83 );84 85 --86 -- This is the Configuration Table for this test.87 --88 89 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (90 RTEMS.NULL_ADDRESS, -- will be replaced by BSP91 256 * 1024, -- executive RAM size92 2, -- maximum # tasks93 0, -- maximum # timers94 1, -- maximum # semaphores95 0, -- maximum # message queues96 0, -- maximum # messages97 0, -- maximum # partitions98 0, -- maximum # regions99 0, -- maximum # dp memory areas100 0, -- maximum # periods101 0, -- maximum # user extensions102 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick103 0 -- # ticks in a timeslice104 );105 106 68 end TMTEST;
Note: See TracChangeset
for help on using the changeset viewer.