summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-03 22:52:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-03 22:52:34 +0000
commit4fd88bce5b7b94114e868772ea22ce80f2681534 (patch)
treeb2ee9d9fb0b76e6ef528afeeaf0eb32836d3c05d /c
parentnew files (diff)
downloadrtems-4fd88bce5b7b94114e868772ea22ce80f2681534.tar.bz2
Removed configuration information.
Diffstat (limited to 'c')
-rw-r--r--c/src/ada-tests/samples/hello/sptest.ads42
1 files changed, 0 insertions, 42 deletions
diff --git a/c/src/ada-tests/samples/hello/sptest.ads b/c/src/ada-tests/samples/hello/sptest.ads
index 9cfd4be064..e632f1a499 100644
--- a/c/src/ada-tests/samples/hello/sptest.ads
+++ b/c/src/ada-tests/samples/hello/sptest.ads
@@ -45,46 +45,4 @@ package SPTEST is
ARGUMENT : in RTEMS.TASK_ARGUMENT
);
---
--- No Device Drivers for this test.
---
-
---
--- 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
- SPTEST.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
- 64 * 1024, -- executive RAM size
- 10, -- 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
- 50 -- # ticks in a timeslice
- );
-
end SPTEST;