瀏覽代碼

add "kservice optimization" option

Meco Man 4 年之前
父節點
當前提交
e65b2a1c2e
共有 2 個文件被更改,包括 10 次插入2 次删除
  1. 8 0
      src/Kconfig
  2. 2 2
      src/kservice.c

+ 8 - 0
src/Kconfig

@@ -116,10 +116,18 @@ config RT_TIMER_THREAD_STACK_SIZE
 
 endif
 
+menu "kservice optimization"
+
 config RT_KSERVICE_USING_STDLIB
     bool "Enable kservice to use standard C library"
     default n
 
+config RT_KSERVICE_USING_TINY_SIZE
+    bool "Enable kservice to use tiny size"
+    default n
+
+endmenu
+
 menuconfig RT_DEBUG
     bool "Enable debugging features"
     default y

+ 2 - 2
src/kservice.c

@@ -126,7 +126,7 @@ RTM_EXPORT(_rt_errno);
  */
 RT_WEAK void *rt_memset(void *s, int c, rt_ubase_t count)
 {
-#ifdef RT_USING_TINY_SIZE
+#ifdef RT_KSERVICE_USING_TINY_SIZE
     char *xs = (char *)s;
 
     while (count--)
@@ -210,7 +210,7 @@ RTM_EXPORT(rt_memset);
  */
 RT_WEAK void *rt_memcpy(void *dst, const void *src, rt_ubase_t count)
 {
-#ifdef RT_USING_TINY_SIZE
+#ifdef RT_KSERVICE_USING_TINY_SIZE
     char *tmp = (char *)dst, *s = (char *)src;
     rt_ubase_t len;