aboutsummaryrefslogtreecommitdiff
path: root/src/sched (follow)
Commit message (Expand)AuthorAgeFilesLines
* remove useless __yield alias for sched_yield•••this is no longer used for anything, and reportedly clashed with a builtin on certain compilers. Rich Felker2014-05-041-4/+1
* add pthread_setaffinity_np and pthread_getaffinity_np functionsRich Felker2013-08-103-18/+26
* add cpu affinity interfaces•••this first commit just includes the CPU_* and sched_* interfaces, not the pthread_* interfaces, which may be added later. simple sanity-check testing has been done for the basic interfaces, but most of the macros have not yet been tested. Rich Felker2013-08-103-0/+29
* add support for thread scheduling (POSIX TPS option)•••linux's sched_* syscalls actually implement the TPS (thread scheduling) functionality, not the PS (process scheduling) functionality which the sched_* functions are supposed to have. omitting support for the PS option (and having the sched_* interfaces fail with ENOSYS rather than omitting them, since some broken software assumes they exist) seems to be the only conforming way to do this on linux. Rich Felker2012-11-116-9/+11
* avoid setting nondefault scheduler tooRich Felker2012-05-031-1/+1
* implement stub versions of sched_*•••these actually work, but for now they prohibit actually setting priority levels and report min/max priority as 0. Rich Felker2012-05-037-0/+59