summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/scheduler.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-07-04 07:28:44 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-07-07 07:28:35 +0200
commit6b1d8c7865268071a8de6ba6343159049a8b0e56 (patch)
tree46083cabb446ad2d1fb3e65d6d9d2f2165446f98 /cpukit/score/include/rtems/score/scheduler.h
parentscore: Move processor affinity to Thread_Control (diff)
downloadrtems-6b1d8c7865268071a8de6ba6343159049a8b0e56.tar.bz2
score: Add processor set to scheduler context
Replace the simple processor count with the processor set owned by the scheduler instance. Update #3059.
Diffstat (limited to 'cpukit/score/include/rtems/score/scheduler.h')
-rw-r--r--cpukit/score/include/rtems/score/scheduler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/scheduler.h b/cpukit/score/include/rtems/score/scheduler.h
index 6e7bdcbd9a..7a3ae6b466 100644
--- a/cpukit/score/include/rtems/score/scheduler.h
+++ b/cpukit/score/include/rtems/score/scheduler.h
@@ -227,9 +227,9 @@ typedef struct Scheduler_Context {
#if defined(RTEMS_SMP)
/**
- * @brief Count of processors owned by this scheduler instance.
+ * @brief The set of processors owned by this scheduler instance.
*/
- uint32_t processor_count;
+ Processor_mask Processors;
#endif
} Scheduler_Context;