about summary refs log tree commit diff
path: root/src/sched/affinity.c
Commit message (Collapse)AuthorAgeFilesLines
* fix return value of pthread_getaffinity_np and pthread_setaffinity_npRich Felker2014-12-021-8/+11
| | | | | these functions are expected to return an error code rather than setting errno and returning -1.
* fix uninitialized output from sched_getaffinityRich Felker2014-12-021-1/+5
| | | | | | | the sched_getaffinity syscall only fills a cpu set up to the set size used/supported by the kernel. the rest is left untouched and userspace is responsible for zero-filling it based on the return value of the syscall.
* add pthread_setaffinity_np and pthread_getaffinity_np functionsRich Felker2013-08-101-0/+26