summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp02
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-29 21:53:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-29 21:53:04 +0000
commit6e315132619fcd3454a373e9059c3d7f5fba70dc (patch)
tree7efeca4acae1254090b5f379d5177738dc4918f2 /testsuites/sptests/sp02
parent2008-01-29 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-6e315132619fcd3454a373e9059c3d7f5fba70dc.tar.bz2
2008-01-29 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, sp02/task1.c, sp24/resume.c, sp30/resume.c, sp41/init.c, sp42/init.c: Add new Object Services collection. This changed the name of a few previously public but undocumented services and added a some new services. * sp43/.cvsignore, sp43/Makefile.am, sp43/init.c, sp43/sp43.scn, sp43/system.h: New files.
Diffstat (limited to 'testsuites/sptests/sp02')
-rw-r--r--testsuites/sptests/sp02/task1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/sptests/sp02/task1.c b/testsuites/sptests/sp02/task1.c
index b307c1787f..48b2c4bb00 100644
--- a/testsuites/sptests/sp02/task1.c
+++ b/testsuites/sptests/sp02/task1.c
@@ -7,7 +7,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -38,10 +38,10 @@ rtems_task Task_1(
printf( "TA1 - rtems_task_ident - tid of TA2 (0x%.8x)\n", tid2 );
- status = rtems_object_id_to_name( tid2, &tid2_name );
- directive_failed( status, "rtems_object_id_to_name of TA2" );
+ status = rtems_object_get_classic_name( tid2, &tid2_name );
+ directive_failed( status, "rtems_object_get_classic_name of TA2" );
- printf( "TA1 - rtems_id_to_name - id -> name of TA2 %sOK\n",
+ printf( "TA1 - rtems_get_classic_name - id -> name of TA2 %sOK\n",
(tid2_name != Task_name[2]) ? "NOT " : "" );
status = rtems_task_ident( Task_name[ 3 ], RTEMS_SEARCH_ALL_NODES, &tid3 );