summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smp03/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/smptests/smp03/init.c')
-rw-r--r--testsuites/smptests/smp03/init.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/testsuites/smptests/smp03/init.c b/testsuites/smptests/smp03/init.c
index 47441b3eec..40b7593aef 100644
--- a/testsuites/smptests/smp03/init.c
+++ b/testsuites/smptests/smp03/init.c
@@ -15,6 +15,7 @@
#include "system.h"
#include <stdio.h>
+#include <inttypes.h>
void Loop() {
volatile int i;
@@ -26,18 +27,18 @@ void PrintTaskInfo(
const char *task_name
)
{
- int cpu_num;
+ uint32_t cpu_num;
- cpu_num = bsp_smp_processor_id();
+ cpu_num = rtems_smp_get_current_processor();
- locked_printf(" CPU %d running task %s\n", cpu_num, task_name );
+ locked_printf(" CPU %" PRIu32 " running task %s\n", cpu_num, task_name );
}
rtems_task Init(
rtems_task_argument argument
)
{
- int i;
+ uint32_t i;
char ch = '0';
rtems_id id;
rtems_status_code status;