nuttx-apps/system/coredump/Kconfig
chao an 3b2b73de88 coredump/priority: Increase the default priority of coredump to 254
Increase coredump priority to avoid unnecessary task switch during dump

Signed-off-by: chao an <anchao@xiaomi.com>
2023-08-09 15:00:45 +08:00

26 lines
623 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_COREDUMP
tristate "Coredump tool capture system status"
default n
depends on ELF_COREDUMP
if SYSTEM_COREDUMP
config SYSTEM_COREDUMP_STACKSIZE
int "coredump stack size"
default DEFAULT_TASK_STACKSIZE
---help---
This is the stack size that will be used when starting the coredump.
config SYSTEM_COREDUMP_PRIORITY
int "coredump priority"
default 254
---help---
This is the task priority that will be used when starting the coredump.
endif # SYSTEM_COREDUMP