From e382a1bfccdecf1dcf01c452ee0edb5afa0660b3 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 10 Oct 2016 14:33:17 +0200 Subject: score: Pass scheduler node to block operation Changed for consistency with other scheduler operations. Update #2556. --- cpukit/score/include/rtems/score/schedulersimpleimpl.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cpukit/score/include/rtems/score/schedulersimpleimpl.h') diff --git a/cpukit/score/include/rtems/score/schedulersimpleimpl.h b/cpukit/score/include/rtems/score/schedulersimpleimpl.h index 85951fa631..c94f9b3bdb 100644 --- a/cpukit/score/include/rtems/score/schedulersimpleimpl.h +++ b/cpukit/score/include/rtems/score/schedulersimpleimpl.h @@ -88,10 +88,12 @@ RTEMS_INLINE_ROUTINE void _Scheduler_simple_Insert_priority_fifo( RTEMS_INLINE_ROUTINE void _Scheduler_simple_Extract( const Scheduler_Control *scheduler, - Thread_Control *the_thread + Thread_Control *the_thread, + Scheduler_Node *node ) { (void) scheduler; + (void) node; _Chain_Extract_unprotected( &the_thread->Object.Node ); } -- cgit v1.2.3