From 63e2ca1b8b0a651a733d4ac3e0517397d0681214 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 31 Oct 2016 09:13:35 +0100 Subject: score: Simplify yield and unblock scheduler ops Update #2556. --- cpukit/score/src/schedulerpriorityyield.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/src/schedulerpriorityyield.c') diff --git a/cpukit/score/src/schedulerpriorityyield.c b/cpukit/score/src/schedulerpriorityyield.c index 4d22dc9b4d..439877d0ce 100644 --- a/cpukit/score/src/schedulerpriorityyield.c +++ b/cpukit/score/src/schedulerpriorityyield.c @@ -21,7 +21,7 @@ #include #include -Scheduler_Void_or_thread _Scheduler_priority_Yield( +Scheduler_Void_or_bool _Scheduler_priority_Yield( const Scheduler_Control *scheduler, Thread_Control *the_thread, Scheduler_Node *node @@ -40,5 +40,5 @@ Scheduler_Void_or_thread _Scheduler_priority_Yield( _Scheduler_priority_Schedule_body( scheduler, the_thread, true ); - SCHEDULER_RETURN_VOID_OR_NULL; + SCHEDULER_RETURN_VOID_OR_BOOL; } -- cgit v1.2.3