summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/schedulersmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/schedulersmp.h')
-rw-r--r--cpukit/score/include/rtems/score/schedulersmp.h18
1 files changed, 6 insertions, 12 deletions
diff --git a/cpukit/score/include/rtems/score/schedulersmp.h b/cpukit/score/include/rtems/score/schedulersmp.h
index 458a31292f..8f5a390a26 100644
--- a/cpukit/score/include/rtems/score/schedulersmp.h
+++ b/cpukit/score/include/rtems/score/schedulersmp.h
@@ -41,19 +41,13 @@ extern "C" {
*/
typedef struct {
- Chain_Control Scheduled;
-} Scheduler_SMP_Control;
-
-typedef struct {
- Scheduler_SMP_Control Base;
- Chain_Control Ready;
-} Scheduler_simple_SMP_Control;
+ /**
+ * @brief Basic scheduler context.
+ */
+ Scheduler_Context Base;
-typedef struct {
- Scheduler_SMP_Control Base;
- Priority_bit_map_Control Bit_map;
- Chain_Control Ready[ 1 ];
-} Scheduler_priority_SMP_Control;
+ Chain_Control Scheduled;
+} Scheduler_SMP_Context;
/** @} */