summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/stackallocatorinit.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Canonicalize Doxygen @file commentsSebastian Huber2020-12-021-1/+2
| | | | | | Use common phrases for the file brief descriptions. Update #3706.
* config: Initialize task stack allocator on demandSebastian Huber2020-11-191-4/+1
| | | | | Register a custom task stack allocator initialization handler only if necessary.
* config: Simplify task stack allocator initSebastian Huber2020-11-191-8/+0
| | | | | Replace runtime checks with compile time assertions. This makes the INTERNAL_ERROR_BAD_STACK_HOOK obsolete.
* score: Add _Stack_Allocator_do_initialize()Sebastian Huber2020-08-311-0/+60
Do the stack allocator initialization and sanity check only if a user-provided stack allocator was configured. This avoids a dependency of _Thread_Handler_initialization() on the stack allocator. Update #3959.