summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/percpujobs.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Simplify _Per_CPU_Wait_for_job()Sebastian Huber2021-08-181-1/+0
| | | | | The _SMP_Fatal() is a no-return function, so the "break" statement is superfluous.
* score: Change _SMP_Send_message() parameter typeSebastian Huber2021-07-291-1/+1
| | | | | Use the processor control to specify the target processor since this is what the callers have available.
* score: Assert job properties in _Per_CPU_Add_job()Sebastian Huber2021-07-291-0/+2
|
* score: Add _Per_CPU_Submit_job()Sebastian Huber2021-07-291-1/+8
|
* score: Move per-CPU jobs supportSebastian Huber2021-07-281-0/+124
Add percpujobs.c to contain the per-CPU jobs implementation.