|
@@ -115,7 +115,6 @@ int *_rt_errno(void)
|
|
|
}
|
|
|
RTM_EXPORT(_rt_errno);
|
|
|
|
|
|
-#ifndef RT_USING_ASM_MEMSET
|
|
|
/**
|
|
|
* This function will set the content of memory to specified value.
|
|
|
*
|
|
@@ -128,7 +127,7 @@ RTM_EXPORT(_rt_errno);
|
|
|
*
|
|
|
* @return The address of source memory.
|
|
|
*/
|
|
|
-void *rt_memset(void *s, int c, rt_ubase_t count)
|
|
|
+RT_WEAK void *rt_memset(void *s, int c, rt_ubase_t count)
|
|
|
{
|
|
|
#ifdef RT_KSERVICE_USING_TINY_SIZE
|
|
|
char *xs = (char *)s;
|
|
@@ -201,9 +200,7 @@ void *rt_memset(void *s, int c, rt_ubase_t count)
|
|
|
#endif /* RT_KSERVICE_USING_TINY_SIZE */
|
|
|
}
|
|
|
RTM_EXPORT(rt_memset);
|
|
|
-#endif /* RT_USING_ASM_MEMSET */
|
|
|
|
|
|
-#ifndef RT_USING_ASM_MEMCPY
|
|
|
/**
|
|
|
* This function will copy memory content from source address to destination address.
|
|
|
*
|
|
@@ -215,7 +212,7 @@ RTM_EXPORT(rt_memset);
|
|
|
*
|
|
|
* @return The address of destination memory
|
|
|
*/
|
|
|
-void *rt_memcpy(void *dst, const void *src, rt_ubase_t count)
|
|
|
+RT_WEAK void *rt_memcpy(void *dst, const void *src, rt_ubase_t count)
|
|
|
{
|
|
|
#ifdef RT_KSERVICE_USING_TINY_SIZE
|
|
|
char *tmp = (char *)dst, *s = (char *)src;
|
|
@@ -287,7 +284,6 @@ void *rt_memcpy(void *dst, const void *src, rt_ubase_t count)
|
|
|
#endif /* RT_KSERVICE_USING_TINY_SIZE */
|
|
|
}
|
|
|
RTM_EXPORT(rt_memcpy);
|
|
|
-#endif /* RT_USING_ASM_MEMCPY */
|
|
|
|
|
|
#ifndef RT_KSERVICE_USING_STDLIB
|
|
|
|