From c70d112599b1688d954f6566bfa29d5988d82464 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 14 Feb 2020 13:26:17 +0100 Subject: config: Add _Thread_Idle_stack_size Move the idle thread stack size configuration constant out of the configuration table. Add THREAD_IDLE_STACK_SIZE_DEFAULT and use it to provide a default definition of the idle thread stack size constant. Update #3875. --- cpukit/include/rtems/config.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'cpukit/include/rtems/config.h') diff --git a/cpukit/include/rtems/config.h b/cpukit/include/rtems/config.h index 31a667a1d6..62804be41c 100644 --- a/cpukit/include/rtems/config.h +++ b/cpukit/include/rtems/config.h @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -92,13 +93,6 @@ typedef struct { */ void *(*idle_task)( uintptr_t ); - /** - * This field specifies the size of the IDLE task's stack. If less than or - * equal to the minimum stack size, then the IDLE task will have the minimum - * stack size. - */ - uint32_t idle_task_stack_size; - /** * @brief Specifies if a unified work area is used or not. * @@ -164,7 +158,7 @@ uint32_t rtems_configuration_get_maximum_extensions( void ); (Configuration.idle_task) #define rtems_configuration_get_idle_task_stack_size() \ - (Configuration.idle_task_stack_size) + (_Thread_Idle_stack_size) #define rtems_configuration_get_interrupt_stack_size() \ ((size_t) _ISR_Stack_size) -- cgit v1.2.3