config: Changeable size for IDLE stack allocator

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.
This commit is contained in:
Sebastian Huber
2022-09-26 09:31:29 +02:00
parent 23cdecd839
commit 2846b17d7e
8 changed files with 31 additions and 25 deletions

View File

@@ -109,7 +109,7 @@ void *test_task_stack_allocate( size_t size );
void test_task_stack_deallocate( void *stack );
void *test_idle_task_stack_allocate( uint32_t cpu_index, size_t size );
void *test_idle_task_stack_allocate( uint32_t cpu_index, size_t *size );
extern rtems_task_argument test_runner_argument;