summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests/tmtests/tmoverhd/tmtest.ads
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-03 20:24:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-03 20:24:11 +0000
commitb4be04e8dd6e3a13d4e56dc6813ca8326143b305 (patch)
treeac26ec559c4145a471e7350e348d8a8d5966b500 /c/src/ada-tests/tmtests/tmoverhd/tmtest.ads
parentCorrected call to Semaphore_Create to have the proper calling sequence (diff)
downloadrtems-b4be04e8dd6e3a13d4e56dc6813ca8326143b305.tar.bz2
Removed Configuration Table information.
Diffstat (limited to '')
-rw-r--r--c/src/ada-tests/tmtests/tmoverhd/tmtest.ads38
1 files changed, 0 insertions, 38 deletions
diff --git a/c/src/ada-tests/tmtests/tmoverhd/tmtest.ads b/c/src/ada-tests/tmtests/tmoverhd/tmtest.ads
index 7967536e7d..5b89688b2c 100644
--- a/c/src/ada-tests/tmtests/tmoverhd/tmtest.ads
+++ b/c/src/ada-tests/tmtests/tmoverhd/tmtest.ads
@@ -139,42 +139,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
- 0, -- 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;