summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/scheduler.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/scheduler.h')
-rw-r--r--cpukit/score/include/rtems/score/scheduler.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/cpukit/score/include/rtems/score/scheduler.h b/cpukit/score/include/rtems/score/scheduler.h
index 7a3ae6b466..5f3fb01206 100644
--- a/cpukit/score/include/rtems/score/scheduler.h
+++ b/cpukit/score/include/rtems/score/scheduler.h
@@ -207,8 +207,7 @@ typedef struct {
bool ( *set_affinity )(
const Scheduler_Control *,
Thread_Control *,
- size_t,
- const cpu_set_t *
+ const Processor_mask *
);
#endif
} Scheduler_Operations;
@@ -507,23 +506,19 @@ void _Scheduler_default_Start_idle(
#if defined(RTEMS_SMP)
/**
- * @brief Set affinity for the default scheduler.
+ * @brief Default implementation of the set affinity scheduler operation.
*
* @param[in] scheduler The scheduler instance.
* @param[in] thread The associated thread.
- * @param[in] cpusetsize The size of the cpuset.
- * @param[in] cpuset Affinity new affinity set.
+ * @param[in] affinity The new processor affinity set for the thread.
*
- * @retval 0 Successful
- *
- * This method always returns successful and does not save
- * the cpuset.
+ * @retval true The processor set of the scheduler is a subset of the affinity set.
+ * @retval false Otherwise.
*/
bool _Scheduler_default_Set_affinity(
const Scheduler_Control *scheduler,
Thread_Control *thread,
- size_t cpusetsize,
- const cpu_set_t *cpuset
+ const Processor_mask *affinity
);
#define SCHEDULER_OPERATION_DEFAULT_GET_SET_AFFINITY \