summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulergetaffinity.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2022-03-10cpukit/: Scripted embedded brains header file clean upJoel Sherrill1-6/+0
Updates #4625.
2022-02-28score/src/[n-s]*.c: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2021-04-27rtems: Change rtems_task_get_affinity() statusSebastian Huber1-1/+1
In case the processor set is not large enough to contain the processor affinity set of the task return RTEMS_INVALID_SIZE instead of RTEMS_INVALID_NUMBER. This is more in line with other directives since the issue is related to the size of an object. Close #4393.
2021-04-27Return status code for _Scheduler_Get_affinity()Sebastian Huber1-2/+7
This avoids having conditional statements to get the API-specific status code.
2020-12-02score: Canonicalize Doxygen @file commentsSebastian Huber1-0/+9
Use common phrases for the file brief descriptions. Update #3706.
2020-04-16Canonicalize config.h includeSebastian Huber1-2/+2
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2017-07-18score: Fix warningSebastian Huber1-1/+1
Update #3059.
2017-07-07score: Move processor affinity to Thread_ControlSebastian Huber1-21/+9
Update #3059.
2017-01-11Remove obsolete __RTEMS_HAVE_SYS_CPUSET_H__Joel Sherrill1-4/+0
2016-11-02score: Introduce Thread_Scheduler_control::homeSebastian Huber1-1/+1
Replace Thread_Scheduler_control::control and Thread_Scheduler_control::own_control with new Thread_Scheduler_control::home. Update #2556.
2016-05-12score: Avoid Giant lock _Scheduler_Get_affinity()Sebastian Huber1-3/+10
Update #2555.
2014-06-02score: _Scheduler_Get_affinity()Sebastian Huber1-23/+21
Drop scheduler parameter. Coding style.
2014-04-15score: Task get/set affinitySebastian Huber1-0/+55
Make rtems_task_get_affinity() and rtems_task_set_affinity() available on non-SMP configurations. Allow larger CPU sets.