summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadattrsetaffinitynp.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-28doxygen: Switch @brief and @ingroupSebastian Huber1-1/+2
This order change fixes the Latex documentation build via Doxygen.
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
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 Huber1-5/+6
This allows to use header includes in "config.h" to reduce the build configuration checks. Update #3818.
2017-10-09posix: Simplify POSIX_API_ControlSebastian Huber1-11/+5
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.
2017-06-07Fix CPU_COPY() usageSebastian Huber1-1/+1
The original CPU_COPY() support of Newlib <sys/cpuset.h> had the parameters in the wrong order. This is fixed in Newlib since 2017-05-22. Update #3023.
2014-09-08posix: Fix warningSebastian Huber1-2/+0
2014-04-03posix: Move affinity from thread to scheduler.Jennifer Averett1-2/+1
2014-03-07Remove trailing whitespace in previous patchesJennifer Averett1-1/+1
2014-03-07posix: Add pthread_attr_t methods to get/set affinity.Jennifer Averett1-0/+54
This patch adds the following methods: + pthread_attr_get_affinity_np + pthread_attr_set_affinity_np