summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerpriorityenqueuefirst.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerpriorityenqueuefirst.c')
-rw-r--r--cpukit/score/src/schedulerpriorityenqueuefirst.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/score/src/schedulerpriorityenqueuefirst.c b/cpukit/score/src/schedulerpriorityenqueuefirst.c
index 1f0605d70b..0d197065a0 100644
--- a/cpukit/score/src/schedulerpriorityenqueuefirst.c
+++ b/cpukit/score/src/schedulerpriorityenqueuefirst.c
@@ -21,16 +21,16 @@
#include <rtems/score/schedulerpriorityimpl.h>
void _Scheduler_priority_Enqueue_first(
- Scheduler_Control *base,
- Thread_Control *the_thread
+ const Scheduler_Control *scheduler,
+ Thread_Control *the_thread
)
{
- Scheduler_priority_Control *self =
- _Scheduler_priority_Self_from_base( base );
+ Scheduler_priority_Context *context =
+ _Scheduler_priority_Get_context( scheduler );
_Scheduler_priority_Ready_queue_enqueue_first(
the_thread,
- &self->Bit_map
+ &context->Bit_map
);
}