summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadunpin.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-12-02score: Canonicalize Doxygen @file commentsSebastian Huber1-0/+9
Use common phrases for the file brief descriptions. Update #3706.
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
2018-09-10score: Add thread pin/unpin supportSebastian Huber1-0/+72
Add support to temporarily pin a thread to its current processor. This may be used to access per-processor data structures in critical sections with enabled thread dispatching, e.g. a pinned thread is allowed to block. Update #3508.