summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerpriorityschedule.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerpriorityschedule.c')
-rw-r--r--cpukit/score/src/schedulerpriorityschedule.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/cpukit/score/src/schedulerpriorityschedule.c b/cpukit/score/src/schedulerpriorityschedule.c
index eb97779eb5..aa6c09a505 100644
--- a/cpukit/score/src/schedulerpriorityschedule.c
+++ b/cpukit/score/src/schedulerpriorityschedule.c
@@ -20,7 +20,10 @@
#include <rtems/score/schedulerpriorityimpl.h>
-void _Scheduler_priority_Schedule( Thread_Control *thread )
+void _Scheduler_priority_Schedule(
+ Scheduler_Control *base,
+ Thread_Control *the_thread
+)
{
- _Scheduler_priority_Schedule_body( thread, false );
+ _Scheduler_priority_Schedule_body( base, the_thread, false );
}