Changeset 08c192b in rtems
- Timestamp:
- 06/03/97 22:54:45 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 430d81a
- Parents:
- 8640cc99
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/samples/base_sp/sptest.ads
r8640cc99 r08c192b 58 58 ); 59 59 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, -- Initialization68 RTEMS.NO_DRIVER_ENTRY, -- Open69 RTEMS.NO_DRIVER_ENTRY, -- Close70 RTEMS.NO_DRIVER_ENTRY, -- Read71 RTEMS.NO_DRIVER_ENTRY, -- Write72 RTEMS.NO_DRIVER_ENTRY -- Control73 )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 name84 2048, -- stack size85 1, -- priority86 RTEMS.DEFAULT_ATTRIBUTES, -- attributes87 SPTEST.INIT'ACCESS, -- entry point88 RTEMS.NO_PREEMPT, -- initial mode89 0 -- argument list90 )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 BSP99 64 * 1024, -- executive RAM size100 10, -- maximum # tasks101 0, -- maximum # timers102 0, -- maximum # semaphores103 0, -- maximum # message queues104 0, -- maximum # messages105 0, -- maximum # partitions106 0, -- maximum # regions107 0, -- maximum # dp memory areas108 0, -- maximum # periods109 0, -- maximum # user extensions110 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick111 50 -- # ticks in a timeslice112 );113 114 60 end SPTEST;
Note: See TracChangeset
for help on using the changeset viewer.