summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/stackallocatorforidle.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* config: Add CONFIGURE_IDLE_TASK_STORAGE_SIZESebastian Huber2022-10-141-24/+19
| | | | | | | | | | | | By default, allocate the IDLE task storage areas from the RTEMS Workspace. This avoids having to estimate the thread-local storage size in the default configuration. Add the application configuration option CONFIGURE_IDLE_TASK_STORAGE_SIZE to request a static allocation of the task storage area for IDLE tasks. Update #3835. Update #4524.
* config: Changeable size for IDLE stack allocatorSebastian Huber2022-10-141-10/+9
| | | | | | | | Allow the IDLE stack allocator to change the stack size. This can be used by applications with a very dynamic thread-local storage size to adjust the thread storage area of the IDLE tasks dynamically. Update #4524.
* cpukit: Consistize OAR copyright headersKinsey Moore2021-11-221-1/+1
| | | | | | These two OAR copyright headers are the only two in the codebase with a format that differs from the typical OAR copyright header. This makes all of the OAR copyright headers consistent.
* score: Optimize default idle task stack allocatorSebastian Huber2021-10-251-3/+9
| | | | Update #4524.
* Add support for IDLE Thread stack allocatorJoel Sherrill2021-10-111-0/+59
Add a stack allocator hook specifically for allocation of IDLE thread stacks. This allows the user to decide if IDLE thread stacks are statically allocated or handled by the same custom allocator mechanism as other thread stacks. Closes #4524.