3b2b73de88
Increase coredump priority to avoid unnecessary task switch during dump Signed-off-by: chao an <anchao@xiaomi.com>
26 lines
623 B
Plaintext
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
|