summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerprioritysmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerprioritysmp.c')
-rw-r--r--cpukit/score/src/schedulerprioritysmp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/src/schedulerprioritysmp.c b/cpukit/score/src/schedulerprioritysmp.c
index b4786ea872..5548ebf8e8 100644
--- a/cpukit/score/src/schedulerprioritysmp.c
+++ b/cpukit/score/src/schedulerprioritysmp.c
@@ -206,7 +206,7 @@ static bool _Scheduler_priority_SMP_Enqueue_scheduled_fifo(
);
}
-bool _Scheduler_priority_SMP_Unblock(
+void _Scheduler_priority_SMP_Unblock(
const Scheduler_Control *scheduler,
Thread_Control *thread,
Scheduler_Node *node
@@ -214,7 +214,7 @@ bool _Scheduler_priority_SMP_Unblock(
{
Scheduler_Context *context = _Scheduler_Get_context( scheduler );
- return _Scheduler_SMP_Unblock(
+ _Scheduler_SMP_Unblock(
context,
thread,
node,
@@ -342,7 +342,7 @@ Thread_Control *_Scheduler_priority_SMP_Remove_processor(
);
}
-bool _Scheduler_priority_SMP_Yield(
+void _Scheduler_priority_SMP_Yield(
const Scheduler_Control *scheduler,
Thread_Control *thread,
Scheduler_Node *node
@@ -350,7 +350,7 @@ bool _Scheduler_priority_SMP_Yield(
{
Scheduler_Context *context = _Scheduler_Get_context( scheduler );
- return _Scheduler_SMP_Yield(
+ _Scheduler_SMP_Yield(
context,
thread,
node,