Changeset 77ff3d10 in rtems for c/src/ada-tests/sptests/spsize/sptest.ads
- Timestamp:
- 06/02/97 22:14:51 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7f79b673
- Parents:
- cf1ced66
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/sptests/spsize/sptest.ads
rcf1ced66 r77ff3d10 55 55 ); 56 56 57 --58 -- This is the Driver Address Table for this test.59 --60 61 DEVICE_DRIVERS : aliased RTEMS.DRIVER_ADDRESS_TABLE( 1 .. 1 ) :=62 (1=>63 (64 CLOCK_DRIVER.INITIALIZE'ACCESS, -- Initialization65 RTEMS.NO_DRIVER_ENTRY, -- Open66 RTEMS.NO_DRIVER_ENTRY, -- Close67 RTEMS.NO_DRIVER_ENTRY, -- Read68 RTEMS.NO_DRIVER_ENTRY, -- Write69 RTEMS.NO_DRIVER_ENTRY -- Control70 )71 );72 73 --74 -- This is the Initialization Tasks Table for this test.75 --76 77 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=78 (1=>79 (80 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name81 2048, -- stack size82 1, -- priority83 RTEMS.DEFAULT_ATTRIBUTES, -- attributes84 SPTEST.INIT'ACCESS, -- entry point85 RTEMS.NO_PREEMPT, -- initial mode86 0 -- argument list87 )88 );89 90 --91 -- This is the Configuration Table for this test.92 --93 94 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (95 RTEMS.NULL_ADDRESS, -- will be replaced by BSP96 64 * 1024, -- executive RAM size97 10, -- maximum # tasks98 0, -- maximum # timers99 0, -- maximum # semaphores100 0, -- maximum # message queues101 0, -- maximum # messages102 0, -- maximum # partitions103 0, -- maximum # regions104 0, -- maximum # dp memory areas105 0, -- maximum # periods106 0, -- maximum # user extensions107 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick108 50 -- # ticks in a timeslice109 );110 111 57 end SPTEST;
Note: See TracChangeset
for help on using the changeset viewer.