summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/scheduleredfupdate.c
blob: 99a3e0e3f69491b4c357d13e7c1d2b1205761ae7 (plain) (tree)
1
2
3
4
5
6
7






                               





                                                                       
                                         





                   
                                         

                           

                                     

 
                                                                   
 

                   
                                                                      



                                                                      
                                                                
   
 
/**
 *  @file
 *
 *  @brief Scheduler EDF Update
 *  @ingroup ScoreScheduler
 */

/*
 *  Copyright (C) 2011 Petr Benes.
 *  Copyright (C) 2011 On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/scheduleredfimpl.h>

void _Scheduler_EDF_Update(
  const Scheduler_Control *scheduler,
  Thread_Control          *the_thread
)
{
  Scheduler_EDF_Node *node = _Scheduler_EDF_Node_get( the_thread );

  (void) scheduler;

  if (node->queue_state == SCHEDULER_EDF_QUEUE_STATE_NEVER_HAS_BEEN) {
    /* Shifts the priority to the region of background tasks. */
    the_thread->Start.initial_priority |= (SCHEDULER_EDF_PRIO_MSB);
    the_thread->real_priority    = the_thread->Start.initial_priority;
    the_thread->current_priority = the_thread->Start.initial_priority;
    node->queue_state = SCHEDULER_EDF_QUEUE_STATE_NOT_PRESENTLY;
  }
}