From 57b7c3ded9b635f8da8255aa22a056f342619e8a Mon Sep 17 00:00:00 2001 From: Ioannis Glaropoulos Date: Tue, 25 Sep 2018 09:48:15 +0200 Subject: [PATCH] kernel: improve help text of INIT_STACKS option This commit improves the help text of INIT_STACKS Kconfig option, so it indicates that the stack initialization applies also to the interrupt stack. Fixes #7196. Signed-off-by: Ioannis Glaropoulos --- kernel/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Kconfig b/kernel/Kconfig index a3e03cd878d..3f33f981e61 100644 --- a/kernel/Kconfig +++ b/kernel/Kconfig @@ -283,7 +283,7 @@ config INIT_STACKS This option instructs the kernel to initialize stack areas with a known value (0xaa) before they are first used, so that the high water mark can be easily determined. This applies to the stack areas - for threads. + for threads, as well as to the interrupt stack. config KERNEL_DEBUG bool "Kernel debugging"