[update] stm32mp1 opemamp malloc -> rt_malloc.
This commit is contained in:
parent
69c0156368
commit
43e8524ffc
|
@ -18,18 +18,21 @@
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern void *rt_malloc(unsigned long nbytes);
|
||||||
|
extern void rt_free(void *ptr);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static inline void *metal_allocate_memory(unsigned int size)
|
static inline void *metal_allocate_memory(unsigned int size)
|
||||||
{
|
{
|
||||||
return (malloc(size));
|
return (rt_malloc(size));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void metal_free_memory(void *ptr)
|
static inline void metal_free_memory(void *ptr)
|
||||||
{
|
{
|
||||||
free(ptr);
|
rt_free(ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -18,18 +18,21 @@
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern void *rt_malloc(unsigned long nbytes);
|
||||||
|
extern void rt_free(void *ptr);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static inline void *metal_allocate_memory(unsigned int size)
|
static inline void *metal_allocate_memory(unsigned int size)
|
||||||
{
|
{
|
||||||
return (malloc(size));
|
return (rt_malloc(size));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void metal_free_memory(void *ptr)
|
static inline void metal_free_memory(void *ptr)
|
||||||
{
|
{
|
||||||
free(ptr);
|
rt_free(ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -18,18 +18,21 @@
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern void *rt_malloc(unsigned long nbytes);
|
||||||
|
extern void rt_free(void *ptr);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static inline void *metal_allocate_memory(unsigned int size)
|
static inline void *metal_allocate_memory(unsigned int size)
|
||||||
{
|
{
|
||||||
return (malloc(size));
|
return (rt_malloc(size));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void metal_free_memory(void *ptr)
|
static inline void metal_free_memory(void *ptr)
|
||||||
{
|
{
|
||||||
free(ptr);
|
rt_free(ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -18,18 +18,21 @@
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern void *rt_malloc(unsigned long nbytes);
|
||||||
|
extern void rt_free(void *ptr);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static inline void *metal_allocate_memory(unsigned int size)
|
static inline void *metal_allocate_memory(unsigned int size)
|
||||||
{
|
{
|
||||||
return (malloc(size));
|
return (rt_malloc(size));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void metal_free_memory(void *ptr)
|
static inline void metal_free_memory(void *ptr)
|
||||||
{
|
{
|
||||||
free(ptr);
|
rt_free(ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue