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






                                         






                                                                       

















                                          
/**
 *  @file
 *
 *  @brief Scheduler Priority Release Job
 *  @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.com/license/LICENSE.
 */

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

#include <rtems/system.h>
#include <rtems/config.h>
#include <rtems/score/scheduler.h>
#include <rtems/score/schedulerpriority.h>

void _Scheduler_priority_Release_job(
  Thread_Control    *the_thread,
  uint32_t           deadline
)
{
  return;
}