Correct a logic problem the prevented dumping the IDLE thread's stack on an assertion

This commit is contained in:
Gregory Nutt 2016-12-16 13:21:01 -06:00
parent 6337fadd8c
commit 34a994b0f6

View File

@ -171,7 +171,7 @@ void xtensa_dumpstate(void)
ustacksize = CONFIG_IDLETHREAD_STACKSIZE; ustacksize = CONFIG_IDLETHREAD_STACKSIZE;
#else #else
ustackbase = sp + 128; ustackbase = sp + 128;
ustacksize = 128; ustacksize = 256;
#endif #endif
} }
else else