/** * @file * * @brief SMP Scheduler API * * @ingroup ScoreSchedulerSMP */ /* * Copyright (c) 2013-2014 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.org/license/LICENSE. */ #ifndef _RTEMS_SCORE_SCHEDULERSMP_H #define _RTEMS_SCORE_SCHEDULERSMP_H #include #include #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** * @defgroup ScoreSchedulerSMP SMP Scheduler * * @ingroup ScoreScheduler * * @{ */ typedef struct { /** * @brief Basic scheduler context. */ Scheduler_Context Base; Chain_Control Scheduled; } Scheduler_SMP_Context; /** @} */ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* _RTEMS_SCORE_SCHEDULERSMP_H */