summaryrefslogtreecommitdiff
path: root/testsuites/smptests/smp05/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/smptests/smp05/init.c')
-rw-r--r--testsuites/smptests/smp05/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/smptests/smp05/init.c b/testsuites/smptests/smp05/init.c
index cf7ea3a10a..33d958f25a 100644
--- a/testsuites/smptests/smp05/init.c
+++ b/testsuites/smptests/smp05/init.c
@@ -26,7 +26,7 @@ rtems_task Test_task(
rtems_task_argument argument
)
{
- locked_printf( "Shut down from CPU %" PRIu32 "\n", rtems_smp_get_current_processor() );
+ locked_printf( "Shut down from CPU %" PRIu32 "\n", rtems_get_current_processor() );
success();
}
@@ -61,7 +61,7 @@ rtems_task Init(
);
directive_failed( status, "task create" );
- cpu_num = rtems_smp_get_current_processor();
+ cpu_num = rtems_get_current_processor();
locked_printf(" CPU %" PRIu32 " start task TA%c\n", cpu_num, ch);
status = rtems_task_start( id, Test_task, i+1 );