2015-01-31 11:13:50 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2015-01-31 11:13:50 +08:00
|
|
|
*
|
2018-10-14 19:28:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-01-31 11:13:50 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2015-01-28 Bernard first version
|
2021-11-14 05:22:09 +08:00
|
|
|
* 2021-11-13 Meco Man implement no-heap warning
|
2015-01-31 11:13:50 +08:00
|
|
|
*/
|
2022-01-08 23:29:41 +08:00
|
|
|
|
2015-01-31 11:13:50 +08:00
|
|
|
#include <rtthread.h>
|
2021-11-14 05:22:09 +08:00
|
|
|
#include <stddef.h>
|
2015-01-31 11:13:50 +08:00
|
|
|
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifndef RT_USING_HEAP
|
2021-12-26 22:41:24 +08:00
|
|
|
#define DBG_TAG "dlib.syscall.mem"
|
2021-11-14 05:22:09 +08:00
|
|
|
#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 */
|
|
|
|
|
|
|
|
void *malloc(size_t n)
|
2015-01-31 11:13:50 +08:00
|
|
|
{
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2015-01-31 21:59:58 +08:00
|
|
|
return rt_malloc(n);
|
2021-11-14 05:22:09 +08:00
|
|
|
#else
|
|
|
|
_NO_HEAP_ERROR();
|
|
|
|
return RT_NULL;
|
|
|
|
#endif
|
2015-01-31 11:13:50 +08:00
|
|
|
}
|
|
|
|
|
2021-11-14 05:22:09 +08:00
|
|
|
void *realloc(void *rmem, size_t newsize)
|
2015-01-31 11:13:50 +08:00
|
|
|
{
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2015-01-31 21:59:58 +08:00
|
|
|
return rt_realloc(rmem, newsize);
|
2021-11-14 05:22:09 +08:00
|
|
|
#else
|
|
|
|
_NO_HEAP_ERROR();
|
|
|
|
return RT_NULL;
|
|
|
|
#endif
|
2015-01-31 11:13:50 +08:00
|
|
|
}
|
|
|
|
|
2021-11-14 05:22:09 +08:00
|
|
|
void *calloc(size_t nelem, size_t elsize)
|
2015-01-31 11:13:50 +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
|
2015-01-31 11:13:50 +08:00
|
|
|
}
|
|
|
|
|
2015-01-31 21:59:58 +08:00
|
|
|
void free(void *rmem)
|
|
|
|
{
|
2021-11-14 05:22:09 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2015-01-31 21:59:58 +08:00
|
|
|
rt_free(rmem);
|
2021-11-14 05:22:09 +08:00
|
|
|
#else
|
|
|
|
_NO_HEAP_ERROR();
|
2018-07-17 11:01:14 +08:00
|
|
|
#endif
|
2021-11-14 05:22:09 +08:00
|
|
|
}
|