From 6b1d8c7865268071a8de6ba6343159049a8b0e56 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 4 Jul 2017 07:28:44 +0200 Subject: score: Add processor set to scheduler context Replace the simple processor count with the processor set owned by the scheduler instance. Update #3059. --- cpukit/score/include/rtems/score/scheduler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/include/rtems/score/scheduler.h') 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; -- cgit v1.2.3