summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/stackallocator.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update company nameSebastian Huber2023-05-201-1/+1
| | | | | The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
* score: Canonicalize Doxygen @file commentsSebastian Huber2020-12-021-2/+12
| | | | | | Use common phrases for the file brief descriptions. Update #3706.
* score: Move _Stack_Allocator_free to separate fileSebastian Huber2020-08-311-2/+0
| | | | | | This decouples the task stack allocation from the deallocation. Update #3959.
* score: Add _Stack_Allocator_do_initialize()Sebastian Huber2020-08-311-2/+0
| | | | | | | | 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.
* Canonicalize config.h includeSebastian Huber2020-04-161-1/+1
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* score: Split stack allocator configurationSebastian Huber2020-02-121-0/+41
This allows the linker garbage collection to perform its work. Update #3835.