summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/schedulerdefaultmappriority.c
blob: 37a600011ebd667dff0c9e139e47f9b67e5b6783 (plain) (tree)




















                                                          
/*
 * Copyright (c) 2016 embedded brains GmbH
 *
 * 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/scheduler.h>

Priority_Control _Scheduler_default_Map_priority(
  const Scheduler_Control *scheduler,
  Priority_Control         priority
)
{
  return priority;
}