summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smpscheduler03
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-07-08 14:25:55 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-07-08 16:30:48 +0200
commit08d9760daf502d893bc02f24651c7b68287c263c (patch)
tree4c2b37721837fd3e10d252a2d8d81067850ec060 /testsuites/smptests/smpscheduler03
parentscore: Simplify SMP processor allocation (diff)
downloadrtems-08d9760daf502d893bc02f24651c7b68287c263c.tar.bz2
score: Rename *_Node_get() to *_Thread_get_node()
This emphasizes that the scheduler node of a thread is returned and this is not a function working with scheduler nodes like the other *_Node_*() functions.
Diffstat (limited to 'testsuites/smptests/smpscheduler03')
-rw-r--r--testsuites/smptests/smpscheduler03/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/smptests/smpscheduler03/init.c b/testsuites/smptests/smpscheduler03/init.c
index 4fddc8dc39..a66a6878cf 100644
--- a/testsuites/smptests/smpscheduler03/init.c
+++ b/testsuites/smptests/smpscheduler03/init.c
@@ -114,7 +114,7 @@ static void test_change_priority(void)
_Thread_Disable_dispatch();
executing = _Thread_Executing;
- node = _Scheduler_SMP_Node_get( executing );
+ node = _Scheduler_SMP_Thread_get_node( executing );
for (i = 0; i < RTEMS_ARRAY_SIZE(states); ++i) {
for (j = 0; j < RTEMS_ARRAY_SIZE(priorities); ++j) {