summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-03 20:20:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-03 20:20:23 +0000
commitb67e6ecd2ffb5c3cc88e26b64ee8d560acd616fd (patch)
tree982fa78beb7590b6e4198f483e69441d36575f8e /c/src/ada-tests
parentnew file (diff)
downloadrtems-b67e6ecd2ffb5c3cc88e26b64ee8d560acd616fd.tar.bz2
Removed Configuration Table information
Diffstat (limited to 'c/src/ada-tests')
-rw-r--r--c/src/ada-tests/tmtests/tm01/tmtest.ads38
1 files changed, 0 insertions, 38 deletions
diff --git a/c/src/ada-tests/tmtests/tm01/tmtest.ads b/c/src/ada-tests/tmtests/tm01/tmtest.ads
index 1530947d75..3c8b449675 100644
--- a/c/src/ada-tests/tmtests/tm01/tmtest.ads
+++ b/c/src/ada-tests/tmtests/tm01/tmtest.ads
@@ -65,42 +65,4 @@ package TMTEST is
ARGUMENT : in RTEMS.TASK_ARGUMENT
);
---
--- This is the Initialization Tasks Table for this test.
---
-
- INITIALIZATION_TASKS : aliased RTEMS.INITIALIZATION_TASKS_TABLE( 1 .. 1 ) :=
- (1=>
- (
- RTEMS.BUILD_NAME( 'U', 'I', '1', ' ' ), -- task name
- 2048, -- stack size
- 1, -- priority
- RTEMS.DEFAULT_ATTRIBUTES, -- attributes
- TMTEST.INIT'ACCESS, -- entry point
- RTEMS.NO_PREEMPT, -- initial mode
- 0 -- argument list
- )
- );
-
---
--- This is the Configuration Table for this test.
---
-
- CONFIGURATION : aliased RTEMS.CONFIGURATION_TABLE := (
- RTEMS.NULL_ADDRESS, -- will be replaced by BSP
- 256 * 1024, -- executive RAM size
- 2, -- maximum # tasks
- 0, -- maximum # timers
- 1, -- maximum # semaphores
- 0, -- maximum # message queues
- 0, -- maximum # messages
- 0, -- maximum # partitions
- 0, -- maximum # regions
- 0, -- maximum # dp memory areas
- 0, -- maximum # periods
- 0, -- maximum # user extensions
- RTEMS.MILLISECONDS_TO_MICROSECONDS(10), -- # us in a tick
- 0 -- # ticks in a timeslice
- );
-
end TMTEST;