mirror of
https://github.com/apache/nuttx.git
synced 2026-08-08 05:57:16 +00:00
Correct a logic problem the prevented dumping the IDLE thread's stack on an assertion
This commit is contained in:
parent
6337fadd8c
commit
34a994b0f6
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@ void xtensa_dumpstate(void)
|
|||
ustacksize = CONFIG_IDLETHREAD_STACKSIZE;
|
||||
#else
|
||||
ustackbase = sp + 128;
|
||||
ustacksize = 128;
|
||||
ustacksize = 256;
|
||||
#endif
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue