summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smp01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/smptests/smp01/init.c')
-rw-r--r--testsuites/smptests/smp01/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/smptests/smp01/init.c b/testsuites/smptests/smp01/init.c
index 91a6e4056c..8439293d95 100644
--- a/testsuites/smptests/smp01/init.c
+++ b/testsuites/smptests/smp01/init.c
@@ -48,12 +48,12 @@ rtems_task Init(
locked_print_initialize();
/* Initialize the TaskRan array */
- for ( i=0; i<rtems_smp_get_processor_count() ; i++ ) {
+ for ( i=0; i<rtems_get_processor_count() ; i++ ) {
TaskRan[i] = false;
}
/* Create and start tasks for each processor */
- for ( i=0; i< rtems_smp_get_processor_count() ; i++ ) {
+ for ( i=0; i< rtems_get_processor_count() ; i++ ) {
if ( i != cpu_self ) {
ch = '0' + i;
@@ -78,7 +78,7 @@ rtems_task Init(
/* Wait on the all tasks to run */
while (1) {
allDone = true;
- for ( i=0; i<rtems_smp_get_processor_count() ; i++ ) {
+ for ( i=0; i<rtems_get_processor_count() ; i++ ) {
if ( i != cpu_self && TaskRan[i] == false)
allDone = false;
}