summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/schedulergetprocessorset.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-28cpukit/rtems/src/[s-z]*.c: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2021-12-02rtems: Move scheduler directives to own headerSebastian Huber1-2/+2
Move all rtems_scheduler_* directives to the new header file <rtems/rtems/scheduler.h>. Add a Scheduler Manager API and implementation group.
2021-05-06rtems: rtems_scheduler_get_processor_set() statusSebastian Huber1-1/+1
In case the processor set is not large enough to contain the processor set owned by the scheduler 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 #4401.
2020-12-02rtems: 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-10-11score: Remove CPU_set_ControlSebastian Huber1-1/+0
Use Processor_mask instead. Update #2514.
2017-07-07score: Add processor set to scheduler contextSebastian Huber1-5/+7
Replace the simple processor count with the processor set owned by the scheduler instance. Update #3059.
2017-01-11Remove obsolete __RTEMS_HAVE_SYS_CPUSET_H__Joel Sherrill1-4/+0
2016-11-09score: Simplify _Scheduler_Get_by_id()Sebastian Huber1-1/+2
Avoid dead code in non-SMP configurations. Return scheduler identifier independent of the current processor count of the scheduler via rtems_scheduler_ident(), since this value may change during run-time. Check the processor count in _Scheduler_Set() under scheduler lock protection. Update #2797.
2014-06-02rtems: Coding styleSebastian Huber1-19/+15
2014-04-15rtems: Add scheduler get processorsSebastian Huber1-10/+18
2014-04-15rtems: Add scheduler identificationSebastian Huber1-0/+46