summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerpriorityblock.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerpriorityblock.c')
-rw-r--r--cpukit/score/src/schedulerpriorityblock.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpukit/score/src/schedulerpriorityblock.c b/cpukit/score/src/schedulerpriorityblock.c
index ba3c825322..611c4cd343 100644
--- a/cpukit/score/src/schedulerpriorityblock.c
+++ b/cpukit/score/src/schedulerpriorityblock.c
@@ -24,12 +24,14 @@
void _Scheduler_priority_Block(
const Scheduler_Control *scheduler,
- Thread_Control *the_thread
+ Thread_Control *the_thread,
+ Scheduler_Node *node
)
{
_Scheduler_Generic_block(
scheduler,
the_thread,
+ node,
_Scheduler_priority_Extract_body,
_Scheduler_priority_Schedule_body
);