This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 3b2b73de8 coredump/priority: Increase the default priority of coredump
to 254
3b2b73de8 is described below
commit 3b2b73de8857113389d0816fe29823fd81de901f
Author: chao an <[email protected]>
AuthorDate: Thu May 25 14:38:42 2023 +0800
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 <[email protected]>
---
system/coredump/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/system/coredump/Kconfig b/system/coredump/Kconfig
index 54f6d530e..5f8673565 100644
--- a/system/coredump/Kconfig
+++ b/system/coredump/Kconfig
@@ -18,7 +18,7 @@ config SYSTEM_COREDUMP_STACKSIZE
config SYSTEM_COREDUMP_PRIORITY
int "coredump priority"
- default 100
+ default 254
---help---
This is the task priority that will be used when starting the
coredump.