From 9c238e1bd4bb8d3874bec65757db31d63db20d40 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 21 Oct 2016 14:33:01 +0200 Subject: score: Simplify update priority scheduler op Remove unused return status. --- cpukit/score/src/schedulersimplesmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/src/schedulersimplesmp.c') diff --git a/cpukit/score/src/schedulersimplesmp.c b/cpukit/score/src/schedulersimplesmp.c index d8f576f15b..ff43c8a908 100644 --- a/cpukit/score/src/schedulersimplesmp.c +++ b/cpukit/score/src/schedulersimplesmp.c @@ -315,7 +315,7 @@ static bool _Scheduler_simple_SMP_Do_ask_for_help( ); } -Thread_Control *_Scheduler_simple_SMP_Update_priority( +void _Scheduler_simple_SMP_Update_priority( const Scheduler_Control *scheduler, Thread_Control *thread, Scheduler_Node *node @@ -323,7 +323,7 @@ Thread_Control *_Scheduler_simple_SMP_Update_priority( { Scheduler_Context *context = _Scheduler_Get_context( scheduler ); - return _Scheduler_SMP_Update_priority( + _Scheduler_SMP_Update_priority( context, thread, node, -- cgit v1.2.3