1 Star 0 Fork 0

zhyulo/Stream

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
alloc.h 1013 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhyulo 提交于 2021-07-28 22:46 . 修改内存池实现
#ifndef __ALLOC_H_
#define __ALLOC_H_
#include <string.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct block {
char *begin; // 内存块起始地址
char *avail; // 内存块当前剩余内存起始地址
char *end; // 内存块终止地址
struct block *next; // 下一个内存块地址
} Block;
typedef struct {
Block *last; // 内存块链表的最末尾
Block head; // 内存块链表头结点
} *Heap, HeapEty;
// In C++, void * --> int * is an error
// In C , it is OK for both void * --> int * and int * --> void *
// In other words, the type checker of C++ is stricter.
#define ALLOC(p) ((p) = HeapAllocate(MainHeap, sizeof *(p)))
#define ALLOC_CLR(p) memset(ALLOC(p), 0, sizeof *(p))
#define BLOCK_SIZE 1024
extern Heap MainHeap;
void InitHeap(Heap hp);
void* HeapAllocate(Heap hp, int size);
void FreeHeap(Heap hp);
void DestroyHeap(Heap hp);
#ifdef __cplusplus
}
#endif
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/zhyulo/Stream.git
git@gitee.com:zhyulo/Stream.git
zhyulo
Stream
Stream
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385