From c172ced3ba4af10d4e343aa933295336ff879495 Mon Sep 17 00:00:00 2001 From: "Alan C. Assis" Date: Tue, 30 Mar 2021 09:33:58 -0300 Subject: [PATCH] sched: Move the default Task Stack size to Stack menu --- Kconfig | 7 ------- sched/Kconfig | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Kconfig b/Kconfig index a0f6f37b39..56b30c6357 100644 --- a/Kconfig +++ b/Kconfig @@ -27,13 +27,6 @@ config DEFAULT_SMALL have already been selected in your configuration file. This applies only to new settings that require a default value. -config DEFAULT_TASK_STACKSIZE - int "The default stack size for tasks" - default 65536 if ARCH_SIM - default 2048 - ---help--- - The default stack size for tasks. - choice prompt "Build Host Platform" default HOST_LINUX diff --git a/sched/Kconfig b/sched/Kconfig index b2f69f1cff..2025a405a1 100644 --- a/sched/Kconfig +++ b/sched/Kconfig @@ -1746,6 +1746,13 @@ endmenu # Work Queue Support menu "Stack and heap information" +config DEFAULT_TASK_STACKSIZE + int "The default stack size for tasks" + default 65536 if ARCH_SIM + default 2048 + ---help--- + The default stack size for tasks. + config IDLETHREAD_STACKSIZE int "Idle thread stack size" default 1024