/** * @file * * @brief SMP Scheduler API * * @ingroup ScoreSchedulerSMP */ /* * Copyright (c) 2013 embedded brains GmbH. All rights reserved. * * embedded brains GmbH * Dornierstr. 4 * 82178 Puchheim * Germany * * * 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. */ #ifndef _RTEMS_SCORE_SCHEDULERSMP_H #define _RTEMS_SCORE_SCHEDULERSMP_H #include #include #include #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** * @defgroup ScoreSchedulerSMP SMP Scheduler * * @ingroup ScoreScheduler * * @{ */ typedef struct { Chain_Control scheduled; Chain_Control ready[ 1 ]; } Scheduler_SMP_Control; void _Scheduler_SMP_Start_idle( Thread_Control *thread, Per_CPU_Control *cpu ); /** @} */ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* _RTEMS_SCORE_SCHEDULERSMP_H */