🎨 更改内存池的成员命名

This commit is contained in:
fslongjin
2022-02-28 19:59:46 +08:00
parent 0801f25b8e
commit 7d8f89622d
3 changed files with 93 additions and 98 deletions

View File

@ -38,9 +38,9 @@ struct slab
ul count_total_using;
ul count_total_free;
// 内存池对象
struct slab_obj *cache_pool;
struct slab_obj *cache_pool_entry;
// dma内存池对象
struct slab_obj *cache_dma_pool;
struct slab_obj *cache_dma_pool_entry;
// 内存池的构造函数和析构函数
void *(*constructor)(void *vaddr, ul arg);