summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests/sptests/sp06/sp06.adb
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/ada-tests/sptests/sp06/sp06.adb')
-rw-r--r--c/src/ada-tests/sptests/sp06/sp06.adb7
1 files changed, 4 insertions, 3 deletions
diff --git a/c/src/ada-tests/sptests/sp06/sp06.adb b/c/src/ada-tests/sptests/sp06/sp06.adb
index 5f14247fd4..20a32f2189 100644
--- a/c/src/ada-tests/sptests/sp06/sp06.adb
+++ b/c/src/ada-tests/sptests/sp06/sp06.adb
@@ -9,7 +9,7 @@
--
--
--
--- COPYRIGHT (c) 1989-1997.
+-- COPYRIGHT (c) 1989-2011.
-- On-Line Applications Research Corporation (OAR).
--
-- The license and distribution terms for this file may in
@@ -20,6 +20,7 @@
--
with RTEMS;
+with RTEMS.TASKS;
with SPTEST;
with TEST_SUPPORT;
@@ -28,7 +29,7 @@ procedure SP06 is
STATUS : RTEMS.STATUS_CODES;
begin
- RTEMS.TASK_CREATE(
+ RTEMS.TASKS.CREATE(
RTEMS.BUILD_NAME( 'I', 'N', 'I', 'T' ),
1,
RTEMS.MINIMUM_STACK_SIZE,
@@ -40,7 +41,7 @@ begin
TEST_SUPPORT.DIRECTIVE_FAILED( STATUS, "TASK_CREATE OF INIT" );
- RTEMS.TASK_START(
+ RTEMS.TASKS.START(
INIT_ID,
SPTEST.INIT'ACCESS,
0,