/** * @file * * @ingroup RTEMSScoreScheduler * * @brief This source file contains the implementation of * _Scheduler_default_Set_affinity(). */ /* * COPYRIGHT (c) 2014. * 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. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include Status_Control _Scheduler_default_Set_affinity( const Scheduler_Control *scheduler, Thread_Control *thread, Scheduler_Node *node, const Processor_mask *affinity ) { return _Scheduler_default_Set_affinity_body( scheduler, thread, node, affinity ); }