From 72e0bdba4580072c33da09fcacbd3063dbc4f2c1 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 10 Oct 2016 14:50:19 +0200 Subject: score: Pass scheduler node to unblock operation Changed for consistency with other scheduler operations. Update #2556. --- cpukit/score/include/rtems/score/schedulercbs.h | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'cpukit/score/include/rtems/score/schedulercbs.h') diff --git a/cpukit/score/include/rtems/score/schedulercbs.h b/cpukit/score/include/rtems/score/schedulercbs.h index 02c7b53e12..ee8e40d399 100644 --- a/cpukit/score/include/rtems/score/schedulercbs.h +++ b/cpukit/score/include/rtems/score/schedulercbs.h @@ -146,23 +146,10 @@ typedef struct { */ extern Scheduler_CBS_Server _Scheduler_CBS_Server_list[]; -/** - * @brief Unblocks a thread from the queue. - * - * This routine adds @a the_thread to the scheduling decision, that is, - * adds it to the ready queue and updates any appropriate scheduling - * variables, for example the heir thread. It is checked whether the - * remaining budget is sufficient. If not, the thread continues as a - * new job in order to protect concurrent threads. - * - * @param[in] scheduler The scheduler instance. - * @param[in] the_thread will be unblocked. - * - * @note This has to be asessed as missed deadline of the current job. - */ Scheduler_Void_or_thread _Scheduler_CBS_Unblock( const Scheduler_Control *scheduler, - Thread_Control *the_thread + Thread_Control *the_thread, + Scheduler_Node *node ); void _Scheduler_CBS_Release_job( -- cgit v1.2.3