nuttx-apps/system/dumpstack/Kconfig
chao an 42d34fcef3 build/Kconfig: fix warnings detected by kconfiglib
Signed-off-by: chao an <anchao@xiaomi.com>
2023-02-09 19:45:36 +08:00

26 lines
642 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
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