From 08d9760daf502d893bc02f24651c7b68287c263c Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 8 Jul 2014 14:25:55 +0200 Subject: 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. --- cpukit/score/src/schedulerpriorityyield.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/src/schedulerpriorityyield.c') diff --git a/cpukit/score/src/schedulerpriorityyield.c b/cpukit/score/src/schedulerpriorityyield.c index 60bab3983e..de4b842513 100644 --- a/cpukit/score/src/schedulerpriorityyield.c +++ b/cpukit/score/src/schedulerpriorityyield.c @@ -26,7 +26,7 @@ void _Scheduler_priority_Yield( Thread_Control *the_thread ) { - Scheduler_priority_Node *node = _Scheduler_priority_Node_get( the_thread ); + Scheduler_priority_Node *node = _Scheduler_priority_Thread_get_node( the_thread ); Chain_Control *ready_chain = node->Ready_queue.ready_chain; (void) scheduler; -- cgit v1.2.3