From 03c9f2406127b71ad5abdfd02af1609f8a67f012 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 5 Apr 2019 08:03:12 +0200 Subject: rtems: Add rtems_scheduler_get_processor() Add rtems_scheduler_get_processor() as a replacement for rtems_get_current_processor(). The rtems_get_current_processor() is a bit orphaned. Adopt it by the Scheduler Manager. This is in line with the glibc sched_getcpu() function. Deprecate rtems_get_current_processor(). Update #3731. --- bsps/powerpc/qoriq/start/bsprestart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bsps/powerpc/qoriq') diff --git a/bsps/powerpc/qoriq/start/bsprestart.c b/bsps/powerpc/qoriq/start/bsprestart.c index 283b242a0f..228d74c231 100644 --- a/bsps/powerpc/qoriq/start/bsprestart.c +++ b/bsps/powerpc/qoriq/start/bsprestart.c @@ -69,7 +69,7 @@ static void restart_interrupt(void *arg) _SMP_barrier_State_initialize(&bs); _SMP_barrier_Wait(&restart_barrier, &bs, _SMP_Processor_count); - cpu_self_index = rtems_get_current_processor(); + cpu_self_index = rtems_scheduler_get_processor(); thread_index = cpu_self_index % QORIQ_THREAD_COUNT; if (cpu_self_index == 0) { -- cgit v1.2.3