-
CONFIG_IDLE_STACK_SIZE
¶
Size of stack for idle thread
Type: int
Help¶
Depending on the work that the idle task must do, most likely due to power management but possibly to other features like system event logging (e.g. logging when the system goes to sleep), the idle thread may need more stack space than the default value.
Defaults¶
- 2048 if
ARC_MPU_VER
= 2 &&SOC_EMSK_EM7D
&&SOC_EMSK
- 2048 if
ARC_MPU_VER
= 2 &&SOC_NSIM_EM
&&SOC_NSIM
- 1024 if
XTENSA
- 512 if
RISCV32
- 320 if
ARC
|| (ARM
&&CPU_HAS_FPU
) - 256
Kconfig definitions¶
At arch/arc/soc/snps_emsk/Kconfig.defconfig.em7d:49
Included via Kconfig:10
→ Kconfig.zephyr:20
→ arch/arc/soc/snps_emsk/Kconfig.defconfig:14
Menu path: (top menu)
config IDLE_STACK_SIZE int default 2048 ifARC_MPU_VER
= 2 &&SOC_EMSK_EM7D
&&SOC_EMSK
depends onARC_MPU_VER
= 2 &&SOC_EMSK_EM7D
&&SOC_EMSK
At arch/arc/soc/snps_nsim/Kconfig.defconfig.em:44
Included via Kconfig:10
→ Kconfig.zephyr:20
→ arch/arc/soc/snps_nsim/Kconfig.defconfig:17
Menu path: (top menu)
config IDLE_STACK_SIZE int default 2048 ifARC_MPU_VER
= 2 &&SOC_NSIM_EM
&&SOC_NSIM
depends onARC_MPU_VER
= 2 &&SOC_NSIM_EM
&&SOC_NSIM
At kernel/Kconfig:136
Included via Kconfig:10
→ Kconfig.zephyr:25
Menu path: (top menu) → General Kernel Options
config IDLE_STACK_SIZE int prompt "Size of stack for idle thread" default 1024 ifXTENSA
default 512 ifRISCV32
default 320 ifARC
|| (ARM
&&CPU_HAS_FPU
) default 256 help Depending on the work that the idle task must do, most likely due to power management but possibly to other features like system event logging (e.g. logging when the system goes to sleep), the idle thread may need more stack space than the default value.
(Definitions include propagated dependencies, including from if’s and menus.)