summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smpschedaffinity04
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-04-05 08:03:12 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-04-09 08:06:46 +0200
commit03c9f2406127b71ad5abdfd02af1609f8a67f012 (patch)
tree0da26b51a42fdcd2403bc12445ffed8066d27547 /testsuites/smptests/smpschedaffinity04
parentscore: Add RTEMS_CONST (diff)
downloadrtems-03c9f2406127b71ad5abdfd02af1609f8a67f012.tar.bz2
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.
Diffstat (limited to 'testsuites/smptests/smpschedaffinity04')
-rw-r--r--testsuites/smptests/smpschedaffinity04/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/smptests/smpschedaffinity04/init.c b/testsuites/smptests/smpschedaffinity04/init.c
index e526746f8a..329b5a78c4 100644
--- a/testsuites/smptests/smpschedaffinity04/init.c
+++ b/testsuites/smptests/smpschedaffinity04/init.c
@@ -60,7 +60,7 @@ static void task(rtems_task_argument arg)
sc = rtems_semaphore_obtain (task_sem, RTEMS_NO_WAIT, 0);
if (sc == RTEMS_SUCCESSFUL) {
task_data.ran = true;
- task_data.actual_cpu = rtems_get_current_processor();
+ task_data.actual_cpu = rtems_scheduler_get_processor();
rtems_semaphore_release(task_sem);
}
}
@@ -115,7 +115,7 @@ static void test(void)
* Verify the Init task is running on the max core.
*/
printf("Verify Init task is on cpu %" PRIu32 "\n",cpu_count-1);
- cpu = rtems_get_current_processor();
+ cpu = rtems_scheduler_get_processor();
rtems_test_assert(cpu == (cpu_count-1));
/* Walk TA1 across all of the cores */