summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerdefaultstartidle.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerdefaultstartidle.c')
-rw-r--r--cpukit/score/src/schedulerdefaultstartidle.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/cpukit/score/src/schedulerdefaultstartidle.c b/cpukit/score/src/schedulerdefaultstartidle.c
index 09fab2638b..caddb7f2a2 100644
--- a/cpukit/score/src/schedulerdefaultstartidle.c
+++ b/cpukit/score/src/schedulerdefaultstartidle.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013 embedded brains GmbH
+ * Copyright (c) 2013-2014 embedded brains GmbH
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
@@ -13,10 +13,11 @@
#include <rtems/score/schedulerimpl.h>
void _Scheduler_default_Start_idle(
- Thread_Control *thread,
- Per_CPU_Control *processor
+ Scheduler_Control *scheduler,
+ Thread_Control *the_thread,
+ Per_CPU_Control *cpu
)
{
- (void) processor;
- _Scheduler_Unblock( thread );
+ (void) cpu;
+ _Scheduler_Unblock( scheduler, the_thread );
}