1 Star 0 Fork 0

wit_yuan/libmctp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
alloc.c 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
Arun P. Mohanan 提交于 2020-04-28 17:35 . Apply clang-format to the repo
/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
#include <assert.h>
#include "libmctp.h"
#include "libmctp-alloc.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
struct {
void *(*m_alloc)(size_t);
void (*m_free)(void *);
void *(*m_realloc)(void *, size_t);
} alloc_ops = {
#ifdef MCTP_DEFAULT_ALLOC
malloc,
free,
realloc,
#endif
};
/* internal-only allocation functions */
void *__mctp_alloc(size_t size)
{
if (alloc_ops.m_alloc)
return alloc_ops.m_alloc(size);
if (alloc_ops.m_realloc)
return alloc_ops.m_realloc(NULL, size);
assert(0);
return NULL;
}
void __mctp_free(void *ptr)
{
if (alloc_ops.m_free)
alloc_ops.m_free(ptr);
else if (alloc_ops.m_realloc)
alloc_ops.m_realloc(ptr, 0);
else
assert(0);
}
void *__mctp_realloc(void *ptr, size_t size)
{
if (alloc_ops.m_realloc)
return alloc_ops.m_realloc(ptr, size);
assert(0);
return NULL;
}
void mctp_set_alloc_ops(void *(*m_alloc)(size_t), void (*m_free)(void *),
void *(m_realloc)(void *, size_t))
{
alloc_ops.m_alloc = m_alloc;
alloc_ops.m_free = m_free;
alloc_ops.m_realloc = m_realloc;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/wit_yuan/libmctp.git
git@gitee.com:wit_yuan/libmctp.git
wit_yuan
libmctp
libmctp
master

搜索帮助