From d097b54633fe98d4370154de5bdea44c32e81648 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 21 Sep 2016 15:17:37 +0200 Subject: 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. --- cpukit/score/include/rtems/score/scheduler.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/score/include/rtems/score/scheduler.h') diff --git a/cpukit/score/include/rtems/score/scheduler.h b/cpukit/score/include/rtems/score/scheduler.h index b934269188..e85b7f8c34 100644 --- a/cpukit/score/include/rtems/score/scheduler.h +++ b/cpukit/score/include/rtems/score/scheduler.h @@ -114,9 +114,9 @@ typedef struct { * @retval NULL It was possible to schedule the thread needing help, and no * other thread needs help as a result. * - * @see _Scheduler_Ask_for_help(). + * @see _Scheduler_Ask_for_help_X(). */ - Thread_Control *( *ask_for_help )( + Thread_Control *( *ask_for_help_X )( const Scheduler_Control *scheduler, Thread_Control *offers_help, Thread_Control *needs_help @@ -323,14 +323,14 @@ Priority_Control _Scheduler_default_Map_priority( * * @retval NULL Always. */ - Thread_Control *_Scheduler_default_Ask_for_help( + Thread_Control *_Scheduler_default_Ask_for_help_X( const Scheduler_Control *scheduler, Thread_Control *offers_help, Thread_Control *needs_help ); #define SCHEDULER_OPERATION_DEFAULT_ASK_FOR_HELP \ - _Scheduler_default_Ask_for_help, + _Scheduler_default_Ask_for_help_X, #else #define SCHEDULER_OPERATION_DEFAULT_ASK_FOR_HELP #endif -- cgit v1.2.3