summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerstrongapa.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-09-21 15:17:37 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-11-02 10:05:40 +0100
commitd097b54633fe98d4370154de5bdea44c32e81648 (patch)
treecb5ad64bd4d2504c4bd65305b70ac6a47cf0b6ef /cpukit/score/src/schedulerstrongapa.c
parentscore: Fix _Scheduler_Try_to_schedule_node() usage (diff)
downloadrtems-d097b54633fe98d4370154de5bdea44c32e81648.tar.bz2
score: Rename scheduler ask for help stuff
Rename the scheduler ask for help stuff since this will be replaced step by step with a second generation of the scheduler helping protocol. Keep the old one for now in parallel to reduce the patch set sizes. Update #2556.
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 fc6d0125e7..7dfe0759b8 100644
--- a/cpukit/score/src/schedulerstrongapa.c
+++ b/cpukit/score/src/schedulerstrongapa.c
@@ -370,7 +370,7 @@ Thread_Control *_Scheduler_strong_APA_Update_priority(
);
}
-Thread_Control *_Scheduler_strong_APA_Ask_for_help(
+Thread_Control *_Scheduler_strong_APA_Ask_for_help_X(
const Scheduler_Control *scheduler,
Thread_Control *offers_help,
Thread_Control *needs_help
@@ -378,7 +378,7 @@ Thread_Control *_Scheduler_strong_APA_Ask_for_help(
{
Scheduler_Context *context = _Scheduler_Get_context( scheduler );
- return _Scheduler_SMP_Ask_for_help(
+ return _Scheduler_SMP_Ask_for_help_X(
context,
offers_help,
needs_help,