From 3559323427e9d8a181d396376cdfe5221e3f75d0 Mon Sep 17 00:00:00 2001 From: kurisaw <2053731441@qq.com> Date: Thu, 23 Oct 2025 09:31:08 +0800 Subject: [PATCH] [kernel][object]: update the default value of RT_NAME_MAX to 12 --- src/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kconfig b/src/Kconfig index 260bf99ba1..ea50610b1f 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -5,7 +5,7 @@ rsource "klibc/Kconfig" config RT_NAME_MAX int "The maximal size of kernel object name" range 2 64 - default 8 + default 12 help Each kernel object, such as thread, timer, semaphore etc, has a name, the RT_NAME_MAX is the maximal size of this object name.