Changeset b4be04e in rtems for c/src/ada-tests/tmtests
- Timestamp:
- Jun 3, 1997, 8:24:11 PM (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4b067069
- Parents:
- 7b93a327
- Location:
- c/src/ada-tests/tmtests
- Files:
-
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/tmtests/tm02/tmtest.ads
r7b93a327 rb4be04e 101 101 ); 102 102 103 --104 -- This is the Initialization Tasks Table for this test.105 --106 107 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=108 (1=>109 (110 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name111 2048, -- stack size112 1, -- priority113 RTEMS.DEFAULT_ATTRIBUTES, -- attributes114 TMTEST.INIT'ACCESS, -- entry point115 RTEMS.NO_PREEMPT, -- initial mode116 0 -- argument list117 )118 );119 120 --121 -- This is the Configuration Table for this test.122 --123 124 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (125 RTEMS.NULL_ADDRESS, -- will be replaced by BSP126 256 * 1024, -- executive RAM size127 111, -- maximum # tasks128 110, -- maximum # timers129 101, -- maximum # semaphores130 0, -- maximum # message queues131 0, -- maximum # messages132 0, -- maximum # partitions133 0, -- maximum # regions134 0, -- maximum # dp memory areas135 0, -- maximum # periods136 0, -- maximum # user extensions137 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick138 0 -- # ticks in a timeslice139 );140 141 103 end TMTEST; -
c/src/ada-tests/tmtests/tm03/tmtest.ads
r7b93a327 rb4be04e 93 93 ); 94 94 95 --96 -- This is the Initialization Tasks Table for this test.97 --98 99 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=100 (1=>101 (102 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name103 2048, -- stack size104 1, -- priority105 RTEMS.DEFAULT_ATTRIBUTES, -- attributes106 TMTEST.INIT'ACCESS, -- entry point107 RTEMS.NO_PREEMPT, -- initial mode108 0 -- argument list109 )110 );111 112 --113 -- This is the Configuration Table for this test.114 --115 116 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (117 RTEMS.NULL_ADDRESS, -- will be replaced by BSP118 256 * 1024, -- executive RAM size119 111, -- maximum # tasks120 110, -- maximum # timers121 101, -- maximum # semaphores122 0, -- maximum # message queues123 0, -- maximum # messages124 0, -- maximum # partitions125 0, -- maximum # regions126 0, -- maximum # dp memory areas127 0, -- maximum # periods128 0, -- maximum # user extensions129 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick130 0 -- # ticks in a timeslice131 );132 133 95 end TMTEST; -
c/src/ada-tests/tmtests/tm04/tmtest.ads
r7b93a327 rb4be04e 159 159 ); 160 160 161 --162 -- This is the Initialization Tasks Table for this test.163 --164 165 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=166 (1=>167 (168 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name169 2048, -- stack size170 1, -- priority171 RTEMS.DEFAULT_ATTRIBUTES, -- attributes172 TMTEST.INIT'ACCESS, -- entry point173 RTEMS.NO_PREEMPT, -- initial mode174 0 -- argument list175 )176 );177 178 --179 -- This is the Configuration Table for this test.180 --181 182 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (183 RTEMS.NULL_ADDRESS, -- will be replaced by BSP184 256 * 1024, -- executive RAM size185 111, -- maximum # tasks186 0, -- maximum # timers187 1, -- maximum # semaphores188 0, -- maximum # message queues189 0, -- maximum # messages190 0, -- maximum # partitions191 0, -- maximum # regions192 0, -- maximum # dp memory areas193 0, -- maximum # periods194 0, -- maximum # user extensions195 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick196 0 -- # ticks in a timeslice197 );198 199 161 end TMTEST; -
c/src/ada-tests/tmtests/tm05/tmtest.ads
r7b93a327 rb4be04e 111 111 ); 112 112 113 --114 -- This is the Initialization Tasks Table for this test.115 --116 117 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=118 (1=>119 (120 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name121 2048, -- stack size122 1, -- priority123 RTEMS.DEFAULT_ATTRIBUTES, -- attributes124 TMTEST.INIT'ACCESS, -- entry point125 RTEMS.NO_PREEMPT, -- initial mode126 0 -- argument list127 )128 );129 130 --131 -- This is the Configuration Table for this test.132 --133 134 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (135 RTEMS.NULL_ADDRESS, -- will be replaced by BSP136 256 * 1024, -- executive RAM size137 111, -- maximum # tasks138 110, -- maximum # timers139 101, -- maximum # semaphores140 0, -- maximum # message queues141 0, -- maximum # messages142 0, -- maximum # partitions143 0, -- maximum # regions144 0, -- maximum # dp memory areas145 0, -- maximum # periods146 0, -- maximum # user extensions147 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick148 0 -- # ticks in a timeslice149 );150 151 113 end TMTEST; -
c/src/ada-tests/tmtests/tm06/tmtest.ads
r7b93a327 rb4be04e 102 102 ); 103 103 104 --105 -- This is the Initialization Tasks Table for this test.106 --107 108 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=109 (1=>110 (111 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name112 2048, -- stack size113 1, -- priority114 RTEMS.DEFAULT_ATTRIBUTES, -- attributes115 TMTEST.INIT'ACCESS, -- entry point116 RTEMS.NO_PREEMPT, -- initial mode117 0 -- argument list118 )119 );120 121 --122 -- This is the Configuration Table for this test.123 --124 125 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (126 RTEMS.NULL_ADDRESS, -- will be replaced by BSP127 256 * 1024, -- executive RAM size128 111, -- maximum # tasks129 110, -- maximum # timers130 101, -- maximum # semaphores131 0, -- maximum # message queues132 0, -- maximum # messages133 0, -- maximum # partitions134 0, -- maximum # regions135 0, -- maximum # dp memory areas136 0, -- maximum # periods137 0, -- maximum # user extensions138 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick139 0 -- # ticks in a timeslice140 );141 142 104 end TMTEST; -
c/src/ada-tests/tmtests/tm07/tmtest.ads
r7b93a327 rb4be04e 109 109 ); 110 110 111 --112 -- This is the Initialization Tasks Table for this test.113 --114 115 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=116 (1=>117 (118 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name119 2048, -- stack size120 1, -- priority121 RTEMS.DEFAULT_ATTRIBUTES, -- attributes122 TMTEST.INIT'ACCESS, -- entry point123 RTEMS.NO_PREEMPT, -- initial mode124 0 -- argument list125 )126 );127 128 --129 -- This is the Configuration Table for this test.130 --131 132 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (133 RTEMS.NULL_ADDRESS, -- will be replaced by BSP134 256 * 1024, -- executive RAM size135 111, -- maximum # tasks136 110, -- maximum # timers137 101, -- maximum # semaphores138 0, -- maximum # message queues139 0, -- maximum # messages140 0, -- maximum # partitions141 0, -- maximum # regions142 0, -- maximum # dp memory areas143 0, -- maximum # periods144 0, -- maximum # user extensions145 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick146 0 -- # ticks in a timeslice147 );148 149 111 end TMTEST; -
c/src/ada-tests/tmtests/tm08/tmtest.ads
r7b93a327 rb4be04e 97 97 ); 98 98 99 --100 -- This is the Initialization Tasks Table for this test.101 --102 103 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=104 (1=>105 (106 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name107 2048, -- stack size108 1, -- priority109 RTEMS.DEFAULT_ATTRIBUTES, -- attributes110 TMTEST.INIT'ACCESS, -- entry point111 RTEMS.NO_PREEMPT, -- initial mode112 0 -- argument list113 )114 );115 116 --117 -- This is the Configuration Table for this test.118 --119 120 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (121 RTEMS.NULL_ADDRESS, -- will be replaced by BSP122 256 * 1024, -- executive RAM size123 111, -- maximum # tasks124 110, -- maximum # timers125 101, -- maximum # semaphores126 0, -- maximum # message queues127 0, -- maximum # messages128 0, -- maximum # partitions129 0, -- maximum # regions130 0, -- maximum # dp memory areas131 0, -- maximum # periods132 0, -- maximum # user extensions133 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick134 0 -- # ticks in a timeslice135 );136 137 99 end TMTEST; -
c/src/ada-tests/tmtests/tm09/tmtest.ads
r7b93a327 rb4be04e 85 85 procedure QUEUE_TEST; 86 86 87 --88 -- This is the Initialization Tasks Table for this test.89 --90 91 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=92 (1=>93 (94 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name95 2048, -- stack size96 1, -- priority97 RTEMS.DEFAULT_ATTRIBUTES, -- attributes98 TMTEST.INIT'ACCESS, -- entry point99 RTEMS.NO_PREEMPT, -- initial mode100 0 -- argument list101 )102 );103 104 --105 -- This is the Configuration Table for this test.106 --107 108 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (109 RTEMS.NULL_ADDRESS, -- will be replaced by BSP110 256 * 1024, -- executive RAM size111 2, -- maximum # tasks112 0, -- maximum # timers113 0, -- maximum # semaphores114 1, -- maximum # message queues115 110, -- maximum # messages116 0, -- maximum # partitions117 0, -- maximum # regions118 0, -- maximum # dp memory areas119 0, -- maximum # periods120 0, -- maximum # user extensions121 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick122 0 -- # ticks in a timeslice123 );124 125 87 end TMTEST; -
c/src/ada-tests/tmtests/tm10/tmtest.ads
r7b93a327 rb4be04e 102 102 ); 103 103 104 --105 -- This is the Initialization Tasks Table for this test.106 --107 108 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=109 (1=>110 (111 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name112 2048, -- stack size113 1, -- priority114 RTEMS.DEFAULT_ATTRIBUTES, -- attributes115 TMTEST.INIT'ACCESS, -- entry point116 RTEMS.NO_PREEMPT, -- initial mode117 0 -- argument list118 )119 );120 121 --122 -- This is the Configuration Table for this test.123 --124 125 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (126 RTEMS.NULL_ADDRESS, -- will be replaced by BSP127 256 * 1024, -- executive RAM size128 110, -- maximum # tasks129 0, -- maximum # timers130 0, -- maximum # semaphores131 1, -- maximum # message queues132 100, -- maximum # messages133 0, -- maximum # partitions134 0, -- maximum # regions135 0, -- maximum # dp memory areas136 0, -- maximum # periods137 0, -- maximum # user extensions138 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick139 0 -- # ticks in a timeslice140 );141 142 104 end TMTEST; -
c/src/ada-tests/tmtests/tm11/tmtest.ads
r7b93a327 rb4be04e 99 99 ); 100 100 101 --102 -- This is the Initialization Tasks Table for this test.103 --104 105 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=106 (1=>107 (108 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name109 2048, -- stack size110 1, -- priority111 RTEMS.DEFAULT_ATTRIBUTES, -- attributes112 TMTEST.INIT'ACCESS, -- entry point113 RTEMS.NO_PREEMPT, -- initial mode114 0 -- argument list115 )116 );117 118 --119 -- This is the Configuration Table for this test.120 --121 122 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (123 RTEMS.NULL_ADDRESS, -- will be replaced by BSP124 256 * 1024, -- executive RAM size125 111, -- maximum # tasks126 0, -- maximum # timers127 0, -- maximum # semaphores128 1, -- maximum # message queues129 100, -- maximum # messages130 0, -- maximum # partitions131 0, -- maximum # regions132 0, -- maximum # dp memory areas133 0, -- maximum # periods134 0, -- maximum # user extensions135 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick136 0 -- # ticks in a timeslice137 );138 139 101 end TMTEST; -
c/src/ada-tests/tmtests/tm12/tmtest.ads
r7b93a327 rb4be04e 90 90 ); 91 91 92 --93 -- This is the Initialization Tasks Table for this test.94 --95 96 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=97 (1=>98 (99 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name100 2048, -- stack size101 1, -- priority102 RTEMS.DEFAULT_ATTRIBUTES, -- attributes103 TMTEST.INIT'ACCESS, -- entry point104 RTEMS.NO_PREEMPT, -- initial mode105 0 -- argument list106 )107 );108 109 --110 -- This is the Configuration Table for this test.111 --112 113 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (114 RTEMS.NULL_ADDRESS, -- will be replaced by BSP115 256 * 1024, -- executive RAM size116 111, -- maximum # tasks117 0, -- maximum # timers118 0, -- maximum # semaphores119 1, -- maximum # message queues120 100, -- maximum # messages121 0, -- maximum # partitions122 0, -- maximum # regions123 0, -- maximum # dp memory areas124 0, -- maximum # periods125 0, -- maximum # user extensions126 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick127 0 -- # ticks in a timeslice128 );129 130 92 end TMTEST; -
c/src/ada-tests/tmtests/tm13/tmtest.ads
r7b93a327 rb4be04e 99 99 ); 100 100 101 --102 -- This is the Initialization Tasks Table for this test.103 --104 105 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=106 (1=>107 (108 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name109 2048, -- stack size110 1, -- priority111 RTEMS.DEFAULT_ATTRIBUTES, -- attributes112 TMTEST.INIT'ACCESS, -- entry point113 RTEMS.NO_PREEMPT, -- initial mode114 0 -- argument list115 )116 );117 118 --119 -- This is the Configuration Table for this test.120 --121 122 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (123 RTEMS.NULL_ADDRESS, -- will be replaced by BSP124 256 * 1024, -- executive RAM size125 111, -- maximum # tasks126 0, -- maximum # timers127 0, -- maximum # semaphores128 1, -- maximum # message queues129 100, -- maximum # messages130 0, -- maximum # partitions131 0, -- maximum # regions132 0, -- maximum # dp memory areas133 0, -- maximum # periods134 0, -- maximum # user extensions135 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick136 0 -- # ticks in a timeslice137 );138 139 101 end TMTEST; -
c/src/ada-tests/tmtests/tm14/tmtest.ads
r7b93a327 rb4be04e 90 90 ); 91 91 92 --93 -- This is the Initialization Tasks Table for this test.94 --95 96 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=97 (1=>98 (99 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name100 2048, -- stack size101 1, -- priority102 RTEMS.DEFAULT_ATTRIBUTES, -- attributes103 TMTEST.INIT'ACCESS, -- entry point104 RTEMS.NO_PREEMPT, -- initial mode105 0 -- argument list106 )107 );108 109 --110 -- This is the Configuration Table for this test.111 --112 113 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (114 RTEMS.NULL_ADDRESS, -- will be replaced by BSP115 256 * 1024, -- executive RAM size116 111, -- maximum # tasks117 0, -- maximum # timers118 0, -- maximum # semaphores119 1, -- maximum # message queues120 100, -- maximum # messages121 0, -- maximum # partitions122 0, -- maximum # regions123 0, -- maximum # dp memory areas124 0, -- maximum # periods125 0, -- maximum # user extensions126 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick127 0 -- # ticks in a timeslice128 );129 130 92 end TMTEST; -
c/src/ada-tests/tmtests/tm15/tmtest.ads
r7b93a327 rb4be04e 107 107 ); 108 108 109 --110 -- This is the Initialization Tasks Table for this test.111 --112 113 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=114 (1=>115 (116 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name117 2048, -- stack size118 1, -- priority119 RTEMS.DEFAULT_ATTRIBUTES, -- attributes120 TMTEST.INIT'ACCESS, -- entry point121 RTEMS.NO_PREEMPT, -- initial mode122 0 -- argument list123 )124 );125 126 --127 -- This is the Configuration Table for this test.128 --129 130 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (131 RTEMS.NULL_ADDRESS, -- will be replaced by BSP132 256 * 1024, -- executive RAM size133 111, -- maximum # tasks134 0, -- maximum # timers135 0, -- maximum # semaphores136 1, -- maximum # message queues137 100, -- maximum # messages138 0, -- maximum # partitions139 0, -- maximum # regions140 0, -- maximum # dp memory areas141 0, -- maximum # periods142 0, -- maximum # user extensions143 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick144 0 -- # ticks in a timeslice145 );146 147 109 end TMTEST; -
c/src/ada-tests/tmtests/tm16/tmtest.ads
r7b93a327 rb4be04e 109 109 ); 110 110 111 --112 -- This is the Initialization Tasks Table for this test.113 --114 115 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=116 (1=>117 (118 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name119 2048, -- stack size120 1, -- priority121 RTEMS.DEFAULT_ATTRIBUTES, -- attributes122 TMTEST.INIT'ACCESS, -- entry point123 RTEMS.NO_PREEMPT, -- initial mode124 0 -- argument list125 )126 );127 128 --129 -- This is the Configuration Table for this test.130 --131 132 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (133 RTEMS.NULL_ADDRESS, -- will be replaced by BSP134 256 * 1024, -- executive RAM size135 111, -- maximum # tasks136 0, -- maximum # timers137 0, -- maximum # semaphores138 1, -- maximum # message queues139 100, -- maximum # messages140 0, -- maximum # partitions141 0, -- maximum # regions142 0, -- maximum # dp memory areas143 0, -- maximum # periods144 0, -- maximum # user extensions145 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick146 0 -- # ticks in a timeslice147 );148 149 111 end TMTEST; -
c/src/ada-tests/tmtests/tm17/tmtest.ads
r7b93a327 rb4be04e 93 93 ); 94 94 95 --96 -- LAST_TASK97 --98 -- DESCRIPTION:99 --100 -- This RTEMS task is the last task to execute in the system. It101 -- stops the timer and reports the execution time of a preemptive102 -- TASK_SET_PRIORITY.103 --104 105 procedure LAST_TASK (106 ARGUMENT : in RTEMS.TASK_ARGUMENT107 );108 109 --110 -- This is the Initialization Tasks Table for this test.111 --112 113 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=114 (1=>115 (116 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name117 2048, -- stack size118 1, -- priority119 RTEMS.DEFAULT_ATTRIBUTES, -- attributes120 TMTEST.INIT'ACCESS, -- entry point121 RTEMS.NO_PREEMPT, -- initial mode122 0 -- argument list123 )124 );125 126 --127 -- This is the Configuration Table for this test.128 --129 130 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (131 RTEMS.NULL_ADDRESS, -- will be replaced by BSP132 256 * 1024, -- executive RAM size133 111, -- maximum # tasks134 0, -- maximum # timers135 0, -- maximum # semaphores136 1, -- maximum # message queues137 100, -- maximum # messages138 0, -- maximum # partitions139 0, -- maximum # regions140 0, -- maximum # dp memory areas141 0, -- maximum # periods142 0, -- maximum # user extensions143 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick144 0 -- # ticks in a timeslice145 );146 147 95 end TMTEST; -
c/src/ada-tests/tmtests/tm18/tmtest.ads
r7b93a327 rb4be04e 95 95 ); 96 96 97 --98 -- This is the Initialization Tasks Table for this test.99 --100 101 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=102 (1=>103 (104 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name105 2048, -- stack size106 1, -- priority107 RTEMS.DEFAULT_ATTRIBUTES, -- attributes108 TMTEST.INIT'ACCESS, -- entry point109 RTEMS.NO_PREEMPT, -- initial mode110 0 -- argument list111 )112 );113 114 --115 -- This is the Configuration Table for this test.116 --117 118 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (119 RTEMS.NULL_ADDRESS, -- will be replaced by BSP120 256 * 1024, -- executive RAM size121 111, -- maximum # tasks122 0, -- maximum # timers123 0, -- maximum # semaphores124 1, -- maximum # message queues125 100, -- maximum # messages126 0, -- maximum # partitions127 0, -- maximum # regions128 0, -- maximum # dp memory areas129 0, -- maximum # periods130 0, -- maximum # user extensions131 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick132 0 -- # ticks in a timeslice133 );134 135 97 end TMTEST; -
c/src/ada-tests/tmtests/tm19/tmtest.ads
r7b93a327 rb4be04e 142 142 ); 143 143 144 --145 -- This is the Initialization Tasks Table for this test.146 --147 148 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=149 (1=>150 (151 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name152 2048, -- stack size153 1, -- priority154 RTEMS.DEFAULT_ATTRIBUTES, -- attributes155 TMTEST.INIT'ACCESS, -- entry point156 RTEMS.NO_PREEMPT, -- initial mode157 0 -- argument list158 )159 );160 161 --162 -- This is the Configuration Table for this test.163 --164 165 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (166 RTEMS.NULL_ADDRESS, -- will be replaced by BSP167 256 * 1024, -- executive RAM size168 111, -- maximum # tasks169 0, -- maximum # timers170 0, -- maximum # semaphores171 1, -- maximum # message queues172 100, -- maximum # messages173 0, -- maximum # partitions174 0, -- maximum # regions175 0, -- maximum # dp memory areas176 0, -- maximum # periods177 0, -- maximum # user extensions178 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick179 0 -- # ticks in a timeslice180 );181 182 144 end TMTEST; -
c/src/ada-tests/tmtests/tm20/tmtest.ads
r7b93a327 rb4be04e 150 150 ); 151 151 152 --153 -- This is the Driver Address Table for this test.154 --155 156 DEVICE_DRIVERS : aliased RTEMS.DRIVER_ADDRESS_TABLE( 1 .. 1 ) :=157 ( 1 =>158 (159 STUB_DRIVER.INITIALIZE'ACCESS, -- Initialization160 STUB_DRIVER.OPEN'ACCESS, -- Open161 STUB_DRIVER.CLOSE'ACCESS, -- Close162 STUB_DRIVER.READ'ACCESS, -- Read163 STUB_DRIVER.WRITE'ACCESS, -- Write164 STUB_DRIVER.CONTROL'ACCESS -- Control165 )166 );167 168 --169 -- This is the Initialization Tasks Table for this test.170 --171 172 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=173 (1=>174 (175 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name176 2048, -- stack size177 1, -- priority178 RTEMS.DEFAULT_ATTRIBUTES, -- attributes179 TMTEST.INIT'ACCESS, -- entry point180 RTEMS.NO_PREEMPT, -- initial mode181 0 -- argument list182 )183 );184 185 --186 -- This is the Configuration Table for this test.187 --188 189 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (190 RTEMS.NULL_ADDRESS, -- will be replaced by BSP191 256 * 1024, -- executive RAM size192 10, -- maximum # tasks193 0, -- maximum # timers194 0, -- maximum # semaphores195 0, -- maximum # message queues196 0, -- maximum # messages197 1, -- maximum # partitions198 1, -- maximum # regions199 0, -- maximum # dp memory areas200 0, -- maximum # periods201 0, -- maximum # user extensions202 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick203 0 -- # ticks in a timeslice204 );205 206 152 end TMTEST; -
c/src/ada-tests/tmtests/tm21/tmtest.ads
r7b93a327 rb4be04e 120 120 ); 121 121 122 --123 -- This is the Initialization Tasks Table for this test.124 --125 126 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=127 (1=>128 (129 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name130 2048, -- stack size131 1, -- priority132 RTEMS.DEFAULT_ATTRIBUTES, -- attributes133 TMTEST.INIT'ACCESS, -- entry point134 RTEMS.NO_PREEMPT, -- initial mode135 0 -- argument list136 )137 );138 139 --140 -- This is the Configuration Table for this test.141 --142 143 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (144 RTEMS.NULL_ADDRESS, -- will be replaced by BSP145 256 * 1024, -- executive RAM size146 102, -- maximum # tasks147 100, -- maximum # timers148 100, -- maximum # semaphores149 100, -- maximum # message queues150 5, -- maximum # messages151 100, -- maximum # partitions152 100, -- maximum # regions153 100, -- maximum # dp memory areas154 100, -- maximum # periods155 0, -- maximum # user extensions156 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick157 0 -- # ticks in a timeslice158 );159 160 122 end TMTEST; -
c/src/ada-tests/tmtests/tm22/tmtest.ads
r7b93a327 rb4be04e 104 104 ); 105 105 106 --107 -- This is the Initialization Tasks Table for this test.108 --109 110 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=111 (1=>112 (113 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name114 2048, -- stack size115 1, -- priority116 RTEMS.DEFAULT_ATTRIBUTES, -- attributes117 TMTEST.INIT'ACCESS, -- entry point118 RTEMS.NO_PREEMPT, -- initial mode119 0 -- argument list120 )121 );122 123 --124 -- This is the Configuration Table for this test.125 --126 127 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (128 RTEMS.NULL_ADDRESS, -- will be replaced by BSP129 256 * 1024, -- executive RAM size130 103, -- maximum # tasks131 0, -- maximum # timers132 0, -- maximum # semaphores133 1, -- maximum # message queues134 101, -- maximum # messages135 0, -- maximum # partitions136 0, -- maximum # regions137 0, -- maximum # dp memory areas138 0, -- maximum # periods139 0, -- maximum # user extensions140 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick141 0 -- # ticks in a timeslice142 );143 144 106 end TMTEST; -
c/src/ada-tests/tmtests/tm23/tmtest.ads
r7b93a327 rb4be04e 128 128 ); 129 129 130 --131 -- This is the Initialization Tasks Table for this test.132 --133 134 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=135 (1=>136 (137 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name138 2048, -- stack size139 1, -- priority140 RTEMS.DEFAULT_ATTRIBUTES, -- attributes141 TMTEST.INIT'ACCESS, -- entry point142 RTEMS.NO_PREEMPT, -- initial mode143 0 -- argument list144 )145 );146 147 --148 -- This is the Configuration Table for this test.149 --150 151 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (152 RTEMS.NULL_ADDRESS, -- will be replaced by BSP153 256 * 1024, -- executive RAM size154 111, -- maximum # tasks155 110, -- maximum # timers156 0, -- maximum # semaphores157 0, -- maximum # message queues158 0, -- maximum # messages159 0, -- maximum # partitions160 0, -- maximum # regions161 0, -- maximum # dp memory areas162 0, -- maximum # periods163 0, -- maximum # user extensions164 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick165 0 -- # ticks in a timeslice166 );167 168 130 end TMTEST; -
c/src/ada-tests/tmtests/tm24/tmtest.ads
r7b93a327 rb4be04e 97 97 ); 98 98 99 --100 -- This is the Initialization Tasks Table for this test.101 --102 103 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=104 (1=>105 (106 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name107 2048, -- stack size108 1, -- priority109 RTEMS.DEFAULT_ATTRIBUTES, -- attributes110 TMTEST.INIT'ACCESS, -- entry point111 RTEMS.NO_PREEMPT, -- initial mode112 0 -- argument list113 )114 );115 116 --117 -- This is the Configuration Table for this test.118 --119 120 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (121 RTEMS.NULL_ADDRESS, -- will be replaced by BSP122 256 * 1024, -- executive RAM size123 111, -- maximum # tasks124 0, -- maximum # timers125 0, -- maximum # semaphores126 0, -- maximum # message queues127 0, -- maximum # messages128 0, -- maximum # partitions129 0, -- maximum # regions130 0, -- maximum # dp memory areas131 0, -- maximum # periods132 0, -- maximum # user extensions133 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick134 0 -- # ticks in a timeslice135 );136 137 99 end TMTEST; -
c/src/ada-tests/tmtests/tm25/tmtest.ads
r7b93a327 rb4be04e 78 78 ); 79 79 80 --81 -- This is the Initialization Tasks Table for this test.82 --83 84 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=85 (1=>86 (87 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name88 2048, -- stack size89 1, -- priority90 RTEMS.DEFAULT_ATTRIBUTES, -- attributes91 TMTEST.INIT'ACCESS, -- entry point92 RTEMS.NO_PREEMPT, -- initial mode93 0 -- argument list94 )95 );96 97 --98 -- This is the Configuration Table for this test.99 --100 101 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (102 RTEMS.NULL_ADDRESS, -- will be replaced by BSP103 256 * 1024, -- executive RAM size104 111, -- maximum # tasks105 0, -- maximum # timers106 1, -- maximum # semaphores107 0, -- maximum # message queues108 0, -- maximum # messages109 0, -- maximum # partitions110 0, -- maximum # regions111 0, -- maximum # dp memory areas112 0, -- maximum # periods113 0, -- maximum # user extensions114 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick115 0 -- # ticks in a timeslice116 );117 118 80 end TMTEST; -
c/src/ada-tests/tmtests/tm26/tmtest.ads
r7b93a327 rb4be04e 187 187 procedure COMPLETE_TEST; 188 188 189 --190 -- This is the Initialization Tasks Table for this test.191 --192 193 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=194 (1=>195 (196 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name197 2048, -- stack size198 1, -- priority199 RTEMS.DEFAULT_ATTRIBUTES, -- attributes200 TMTEST.INIT'ACCESS, -- entry point201 RTEMS.NO_PREEMPT, -- initial mode202 0 -- argument list203 )204 );205 206 --207 -- This is the Configuration Table for this test.208 --209 210 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (211 RTEMS.NULL_ADDRESS, -- will be replaced by BSP212 256 * 1024, -- executive RAM size213 111, -- maximum # tasks214 0, -- maximum # timers215 1, -- maximum # semaphores216 0, -- maximum # message queues217 0, -- maximum # messages218 0, -- maximum # partitions219 0, -- maximum # regions220 0, -- maximum # dp memory areas221 0, -- maximum # periods222 0, -- maximum # user extensions223 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick224 0 -- # ticks in a timeslice225 );226 227 189 end TMTEST; -
c/src/ada-tests/tmtests/tm27/tmtest.ads
r7b93a327 rb4be04e 129 129 procedure ISR_HANDLER_INNER; 130 130 131 --132 -- This is the Initialization Tasks Table for this test.133 --134 135 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=136 (1=>137 (138 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name139 2048, -- stack size140 1, -- priority141 RTEMS.DEFAULT_ATTRIBUTES, -- attributes142 TMTEST.INIT'ACCESS, -- entry point143 RTEMS.NO_PREEMPT, -- initial mode144 0 -- argument list145 )146 );147 148 --149 -- This is the Configuration Table for this test.150 --151 152 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (153 RTEMS.NULL_ADDRESS, -- will be replaced by BSP154 256 * 1024, -- executive RAM size155 111, -- maximum # tasks156 0, -- maximum # timers157 1, -- maximum # semaphores158 0, -- maximum # message queues159 0, -- maximum # messages160 0, -- maximum # partitions161 0, -- maximum # regions162 0, -- maximum # dp memory areas163 0, -- maximum # periods164 0, -- maximum # user extensions165 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick166 0 -- # ticks in a timeslice167 );168 169 131 end TMTEST; -
c/src/ada-tests/tmtests/tm28/tmtest.ads
r7b93a327 rb4be04e 104 104 ); 105 105 106 --107 -- This is the Initialization Tasks Table for this test.108 --109 110 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=111 (1=>112 (113 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name114 2048, -- stack size115 1, -- priority116 RTEMS.DEFAULT_ATTRIBUTES, -- attributes117 TMTEST.INIT'ACCESS, -- entry point118 RTEMS.NO_PREEMPT, -- initial mode119 0 -- argument list120 )121 );122 123 --124 -- This is the Configuration Table for this test.125 --126 127 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (128 RTEMS.NULL_ADDRESS, -- will be replaced by BSP129 256 * 1024, -- executive RAM size130 2, -- maximum # tasks131 0, -- maximum # timers132 0, -- maximum # semaphores133 0, -- maximum # message queues134 0, -- maximum # messages135 0, -- maximum # partitions136 0, -- maximum # regions137 100, -- maximum # dp memory areas138 0, -- maximum # periods139 0, -- maximum # user extensions140 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick141 0 -- # ticks in a timeslice142 );143 144 106 end TMTEST; -
c/src/ada-tests/tmtests/tm29/tmtest.ads
r7b93a327 rb4be04e 94 94 ); 95 95 96 --97 -- This is the Initialization Tasks Table for this test.98 --99 100 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=101 (1=>102 (103 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name104 2048, -- stack size105 1, -- priority106 RTEMS.DEFAULT_ATTRIBUTES, -- attributes107 TMTEST.INIT'ACCESS, -- entry point108 RTEMS.NO_PREEMPT, -- initial mode109 0 -- argument list110 )111 );112 113 --114 -- This is the Configuration Table for this test.115 --116 117 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (118 RTEMS.NULL_ADDRESS, -- will be replaced by BSP119 256 * 1024, -- executive RAM size120 111, -- maximum # tasks121 0, -- maximum # timers122 0, -- maximum # semaphores123 0, -- maximum # message queues124 0, -- maximum # messages125 0, -- maximum # partitions126 0, -- maximum # regions127 0, -- maximum # dp memory areas128 111, -- maximum # periods129 0, -- maximum # user extensions130 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick131 0 -- # ticks in a timeslice132 );133 134 96 end TMTEST; -
c/src/ada-tests/tmtests/tmck/tmtest.ads
r7b93a327 rb4be04e 95 95 procedure CHECK_READ_TIMER; 96 96 97 --98 -- This is the Initialization Tasks Table for this test.99 --100 101 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=102 (1=>103 (104 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name105 2048, -- stack size106 1, -- priority107 RTEMS.DEFAULT_ATTRIBUTES, -- attributes108 TMTEST.INIT'ACCESS, -- entry point109 RTEMS.NO_PREEMPT, -- initial mode110 0 -- argument list111 )112 );113 114 --115 -- This is the Configuration Table for this test.116 --117 118 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (119 RTEMS.NULL_ADDRESS, -- will be replaced by BSP120 256 * 1024, -- executive RAM size121 2, -- maximum # tasks122 0, -- maximum # timers123 1, -- maximum # semaphores124 0, -- maximum # message queues125 0, -- maximum # messages126 0, -- maximum # partitions127 0, -- maximum # regions128 0, -- maximum # dp memory areas129 0, -- maximum # periods130 0, -- maximum # user extensions131 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick132 0 -- # ticks in a timeslice133 );134 135 97 end TMTEST; -
c/src/ada-tests/tmtests/tmoverhd/tmtest.ads
r7b93a327 rb4be04e 140 140 ); 141 141 142 --143 -- This is the Initialization Tasks Table for this test.144 --145 146 INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=147 (1=>148 (149 RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name150 2048, -- stack size151 1, -- priority152 RTEMS.DEFAULT_ATTRIBUTES, -- attributes153 TMTEST.INIT'ACCESS, -- entry point154 RTEMS.NO_PREEMPT, -- initial mode155 0 -- argument list156 )157 );158 159 --160 -- This is the Configuration Table for this test.161 --162 163 CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (164 RTEMS.NULL_ADDRESS, -- will be replaced by BSP165 256 * 1024, -- executive RAM size166 2, -- maximum # tasks167 0, -- maximum # timers168 0, -- maximum # semaphores169 0, -- maximum # message queues170 0, -- maximum # messages171 0, -- maximum # partitions172 0, -- maximum # regions173 0, -- maximum # dp memory areas174 0, -- maximum # periods175 0, -- maximum # user extensions176 RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick177 0 -- # ticks in a timeslice178 );179 180 142 end TMTEST;
Note: See TracChangeset
for help on using the changeset viewer.