summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerstrongapa.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-10-21 11:07:21 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-11-23 11:00:28 +0100
commit757a10964f233fd73936cb41161324123634b420 (patch)
treea6d2ef71964134975ef0cc8a1810c6f2f7b2d5d8 /cpukit/score/src/schedulerstrongapa.c
parentscore: Scheduler insert after move (diff)
downloadrtems-757a10964f233fd73936cb41161324123634b420.tar.bz2
score: Remove return value from enqueue scheduled
The return value was unused. Remove it. Update #4531.
Diffstat (limited to '')
-rw-r--r--cpukit/score/src/schedulerstrongapa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/schedulerstrongapa.c b/cpukit/score/src/schedulerstrongapa.c
index 2d138bc7c3..6643005288 100644
--- a/cpukit/score/src/schedulerstrongapa.c
+++ b/cpukit/score/src/schedulerstrongapa.c
@@ -737,13 +737,13 @@ static inline bool _Scheduler_strong_APA_Enqueue(
);
}
-static inline bool _Scheduler_strong_APA_Enqueue_scheduled(
+static inline void _Scheduler_strong_APA_Enqueue_scheduled(
Scheduler_Context *context,
Scheduler_Node *node,
Priority_Control insert_priority
)
{
- return _Scheduler_SMP_Enqueue_scheduled(
+ _Scheduler_SMP_Enqueue_scheduled(
context,
node,
insert_priority,