From 34a994b0f60ac2a2e77bf28f9a3c93ded07c1944 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 16 Dec 2016 13:21:01 -0600 Subject: [PATCH] Correct a logic problem the prevented dumping the IDLE thread's stack on an assertion --- arch/xtensa/src/common/xtensa_dumpstate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/xtensa/src/common/xtensa_dumpstate.c b/arch/xtensa/src/common/xtensa_dumpstate.c index 4a9eaa3b0d0..9e0af50e812 100644 --- a/arch/xtensa/src/common/xtensa_dumpstate.c +++ b/arch/xtensa/src/common/xtensa_dumpstate.c @@ -171,7 +171,7 @@ void xtensa_dumpstate(void) ustacksize = CONFIG_IDLETHREAD_STACKSIZE; #else ustackbase = sp + 128; - ustacksize = 128; + ustacksize = 256; #endif } else