/** * @file * * @brief Scheduler Default Set Affinity Operation * * @ingroup ScoreScheduler */ /* * 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. */ #if HAVE_CONFIG_H #include "config.h" #endif #include bool _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 ); }