summaryrefslogtreecommitdiff
path: root/cpukit/posix/src/pthreadgetaffinitynp.c (follow)
AgeCommit message (Collapse)Author
2020-04-28doxygen: Switch @brief and @ingroupSebastian Huber
This order change fixes the Latex documentation build via Doxygen.
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2019-11-19Move feature macro before "config.h" includeSebastian Huber
This allows to use header includes in "config.h" to reduce the build configuration checks. Update #3818.
2017-10-09posix: Simplify POSIX_API_ControlSebastian Huber
Return stack area via pthread_getattr_np(). Simplify * pthread_attr_setaffinity_np(), and * pthread_attr_getaffinity_np() and let the scheduler do the more sophisticated error checks. Make * pthread_setaffinity_np(), * pthread_getaffinity_np(), * pthread_attr_setaffinity_np(), and * pthread_attr_getaffinity_np() available in all configurations. Update #2514. Close #3145. Close #3168.
2016-05-20Replace *_Get_interrupt_disable() with *_Get()Sebastian Huber
Uniformly use *_Get() to get an object by identifier with a lock context.
2016-05-12score: Avoid Giant lock _Scheduler_Get_affinity()Sebastian Huber
Update #2555.
2014-06-02score: _Scheduler_Get_affinity()Sebastian Huber
Drop scheduler parameter. Coding style.
2014-04-04score: Add scheduler control to scheduler opsSebastian Huber
Scheduler operations must be free of a global scheduler context to enable partitioned/clustered scheduling.
2014-04-03posix: Move affinity from thread to scheduler.Jennifer Averett
2014-03-07Remove trailing whitespace in previous patchesJennifer Averett
2014-03-07posix: Add dynamic pthread get and set affinity.Jennifer Averett
This patch adds the following methods: + pthread_get_affinity_np + pthread_set_affinity_np