summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimpleblock.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulersimpleblock.c')
-rw-r--r--cpukit/score/src/schedulersimpleblock.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpukit/score/src/schedulersimpleblock.c b/cpukit/score/src/schedulersimpleblock.c
index ad409bbf61..2fd50b74cb 100644
--- a/cpukit/score/src/schedulersimpleblock.c
+++ b/cpukit/score/src/schedulersimpleblock.c
@@ -23,12 +23,14 @@
void _Scheduler_simple_Block(
const Scheduler_Control *scheduler,
- Thread_Control *the_thread
+ Thread_Control *the_thread,
+ Scheduler_Node *node
)
{
_Scheduler_Generic_block(
scheduler,
the_thread,
+ node,
_Scheduler_simple_Extract,
_Scheduler_simple_Schedule_body
);