Changeset b7c2ccc in rtems
- Timestamp:
- 06/02/97 20:59:29 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2b7fc9cc
- Parents:
- 9917d5da
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/sptests/sp01/sptest.ads
r9917d5da rb7c2ccc 22 22 -- 23 23 24 with CLOCK_DRIVER;25 24 with RTEMS; 26 25 … … 59 58 ); 60 59 61 --62 -- This is the Driver Address Table for this test.63 --64 65 DEVICE_DRIVERS : aliased RTEMS.DRIVER_ADDRESS_TABLE( 1 .. 1 ) :=66 (1=>67 (68 CLOCK_DRIVER.INITIALIZE'ACCESS, -- Initialization69 RTEMS.NO_DRIVER_ENTRY, -- Open70 RTEMS.NO_DRIVER_ENTRY, -- Close71 RTEMS.NO_DRIVER_ENTRY, -- Read72 RTEMS.NO_DRIVER_ENTRY, -- Write73 RTEMS.NO_DRIVER_ENTRY -- Control74 )75 );76 77 --78 -- This is the Initialization Tasks Table for this test.79 --80 81 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=82 (1=>83 (84 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name85 2048, -- stack size86 1, -- priority87 RTEMS.DEFAULT_ATTRIBUTES, -- attributes88 SPTEST.INIT'ACCESS, -- entry point89 RTEMS.NO_PREEMPT, -- initial mode90 0 -- argument list91 )92 );93 94 --95 -- This is the Configuration Table for this test.96 --97 98 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (99 RTEMS.NULL_ADDRESS, -- will be replaced by BSP100 64 * 1024, -- executive RAM size101 10, -- maximum # tasks102 0, -- maximum # timers103 0, -- maximum # semaphores104 0, -- maximum # message queues105 0, -- maximum # messages106 0, -- maximum # partitions107 0, -- maximum # regions108 0, -- maximum # dp memory areas109 0, -- maximum # periods110 0, -- maximum # user extensions111 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick112 50 -- # ticks in a timeslice113 );114 115 60 end SPTEST;
Note: See TracChangeset
for help on using the changeset viewer.