add "kservice optimization" option

This commit is contained in:
Meco Man 2021-04-09 13:37:55 +08:00
parent 342b0a3b1f
commit e65b2a1c2e
2 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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;