summaryrefslogtreecommitdiff
path: root/cpukit/score/src/schedulersmp.c (follow)
AgeCommit message (Collapse)Author
2019-04-12score: Use an ISR lock for Per_CPU_Control::LockSebastian Huber
The use of a hand crafted lock for Per_CPU_Control::Lock was necessary at some point in the SMP support development, but it is no longer justified.
2017-03-07score: Fix scheduler yield in SMP configurationsSebastian Huber
Check that no ask help request is registered during unblock and yield scheduler operations. There is no need to ask for help if a scheduled thread yields, since this is already covered by the pre-emption detection. Update #2556.