nuttx-apps/system/dumpstack/Kconfig
chao.an 72abd300e6 system/dumpstack: add dump stack tool support
Signed-off-by: chao.an <anchao@xiaomi.com>
2021-08-01 23:56:36 -07:00

27 lines
654 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
menuconfig SYSTEM_DUMPSTACK
tristate "dumpstack tool for show the task backtrace"
default n
depends on SCHED_BACKTRACE
---help---
if SYSTEM_DUMPSTACK
config SYSTEM_DUMPSTACK_STACKSIZE
int "dumpstack stack size"
default DEFAULT_TASK_STACKSIZE
---help---
This is the stack size that will be used when starting the dumpstack.
config SYSTEM_DUMPSTACK_PRIORITY
int "dumpstack priority"
default 100
---help---
This is the task priority that will be used when starting the dumpstack.
endif # SYSTEM_DUMPSTACK