2012-11-23 11:26:09 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2012-11-23 11:26:09 +08:00
|
|
|
*
|
2018-10-14 19:28:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2014-08-03 14:31:19 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
2021-11-14 05:22:09 +08:00
|
|
|
* Date Author Notes
|
|
|
|
* 2014-08-03 bernard Add file header
|
|
|
|
* 2021-11-13 Meco Man implement no-heap warning
|
2012-11-23 11:26:09 +08:00
|
|
|
*/
|
2012-11-22 11:39:22 +08:00
|
|
|
|
2021-09-11 20:40:07 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
#include <stddef.h>
|
2012-11-22 11:39:22 +08:00
|
|
|
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifndef RT_USING_HEAP
|
|
|
|
#define DBG_TAG "armlibc.mem"
|
|
|
|
#define DBG_LVL DBG_INFO
|
|
|
|
#include <rtdbg.h>
|
|
|
|
|
|
|
|
#define _NO_HEAP_ERROR() do{LOG_E("Please enable RT_USING_HEAP");\
|
|
|
|
RT_ASSERT(0);\
|
|
|
|
}while(0)
|
|
|
|
#endif /* RT_USING_HEAP */
|
2018-09-23 12:08:44 +08:00
|
|
|
|
|
|
|
#ifdef __CC_ARM
|
2012-11-23 11:26:09 +08:00
|
|
|
/* avoid the heap and heap-using library functions supplied by arm */
|
2012-11-22 11:39:22 +08:00
|
|
|
#pragma import(__use_no_heap)
|
2021-11-14 05:22:09 +08:00
|
|
|
#endif /* __CC_ARM */
|
2012-11-22 11:39:22 +08:00
|
|
|
|
2018-09-11 19:46:08 +08:00
|
|
|
void *malloc(size_t n)
|
2012-11-22 11:39:22 +08:00
|
|
|
{
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2012-11-22 11:39:22 +08:00
|
|
|
return rt_malloc(n);
|
2021-11-14 05:22:09 +08:00
|
|
|
#else
|
|
|
|
_NO_HEAP_ERROR();
|
|
|
|
return RT_NULL;
|
|
|
|
#endif
|
2012-11-22 11:39:22 +08:00
|
|
|
}
|
2015-10-11 15:37:34 +08:00
|
|
|
RTM_EXPORT(malloc);
|
2012-11-22 11:39:22 +08:00
|
|
|
|
2018-09-11 19:46:08 +08:00
|
|
|
void *realloc(void *rmem, size_t newsize)
|
2012-11-22 11:39:22 +08:00
|
|
|
{
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2012-11-22 11:39:22 +08:00
|
|
|
return rt_realloc(rmem, newsize);
|
2021-11-14 05:22:09 +08:00
|
|
|
#else
|
|
|
|
_NO_HEAP_ERROR();
|
|
|
|
return RT_NULL;
|
|
|
|
#endif
|
2012-11-22 11:39:22 +08:00
|
|
|
}
|
2015-10-11 15:37:34 +08:00
|
|
|
RTM_EXPORT(realloc);
|
2012-11-22 11:39:22 +08:00
|
|
|
|
2018-09-11 19:46:08 +08:00
|
|
|
void *calloc(size_t nelem, size_t elsize)
|
2014-08-03 14:31:19 +08:00
|
|
|
{
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2017-10-15 22:41:59 +08:00
|
|
|
return rt_calloc(nelem, elsize);
|
2021-11-14 05:22:09 +08:00
|
|
|
#else
|
|
|
|
_NO_HEAP_ERROR();
|
|
|
|
return RT_NULL;
|
|
|
|
#endif
|
2014-08-03 14:31:19 +08:00
|
|
|
}
|
2015-10-11 15:37:34 +08:00
|
|
|
RTM_EXPORT(calloc);
|
2014-08-03 14:31:19 +08:00
|
|
|
|
2012-11-22 11:39:22 +08:00
|
|
|
void free(void *rmem)
|
|
|
|
{
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2012-11-22 11:39:22 +08:00
|
|
|
rt_free(rmem);
|
2021-11-14 05:22:09 +08:00
|
|
|
#else
|
|
|
|
_NO_HEAP_ERROR();
|
|
|
|
#endif
|
2012-11-22 11:39:22 +08:00
|
|
|
}
|
2015-10-11 15:37:34 +08:00
|
|
|
RTM_EXPORT(free);
|