Changeset 4fd88bc in rtems for c/src/ada-tests/samples/hello
- Timestamp:
- 06/03/97 22:52:34 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8640cc99
- Parents:
- 5d0f4a56
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/samples/hello/sptest.ads
r5d0f4a56 r4fd88bc 46 46 ); 47 47 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 name60 2048, -- stack size61 1, -- priority62 RTEMS.DEFAULT_ATTRIBUTES, -- attributes63 SPTEST.INIT'ACCESS, -- entry point64 RTEMS.NO_PREEMPT, -- initial mode65 0 -- argument list66 )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 BSP75 64 * 1024, -- executive RAM size76 10, -- maximum # tasks77 0, -- maximum # timers78 0, -- maximum # semaphores79 0, -- maximum # message queues80 0, -- maximum # messages81 0, -- maximum # partitions82 0, -- maximum # regions83 0, -- maximum # dp memory areas84 0, -- maximum # periods85 0, -- maximum # user extensions86 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick87 50 -- # ticks in a timeslice88 );89 90 48 end SPTEST;
Note: See TracChangeset
for help on using the changeset viewer.