summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerstrongapa.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerstrongapa.c')
-rw-r--r--cpukit/score/src/schedulerstrongapa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/src/schedulerstrongapa.c b/cpukit/score/src/schedulerstrongapa.c
index 07d27e97b2..d8d3280ed9 100644
--- a/cpukit/score/src/schedulerstrongapa.c
+++ b/cpukit/score/src/schedulerstrongapa.c
@@ -340,7 +340,7 @@ static bool _Scheduler_strong_APA_Enqueue_scheduled_fifo(
);
}
-bool _Scheduler_strong_APA_Unblock(
+void _Scheduler_strong_APA_Unblock(
const Scheduler_Control *scheduler,
Thread_Control *the_thread,
Scheduler_Node *node
@@ -348,7 +348,7 @@ bool _Scheduler_strong_APA_Unblock(
{
Scheduler_Context *context = _Scheduler_Get_context( scheduler );
- return _Scheduler_SMP_Unblock(
+ _Scheduler_SMP_Unblock(
context,
the_thread,
node,
@@ -476,7 +476,7 @@ Thread_Control *_Scheduler_strong_APA_Remove_processor(
);
}
-bool _Scheduler_strong_APA_Yield(
+void _Scheduler_strong_APA_Yield(
const Scheduler_Control *scheduler,
Thread_Control *the_thread,
Scheduler_Node *node
@@ -484,7 +484,7 @@ bool _Scheduler_strong_APA_Yield(
{
Scheduler_Context *context = _Scheduler_Get_context( scheduler );
- return _Scheduler_SMP_Yield(
+ _Scheduler_SMP_Yield(
context,
the_thread,
node,