9 Star 40 Fork 8

sinriv/meshlang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mempool.h 2.57 KB
一键复制 编辑 原始数据 按行查看 历史
cgoxopx 提交于 2019-11-03 22:02 . 流程图编写工具
#ifndef MESHLANG_MEMPOOL
#define MESHLANG_MEMPOOL
#include <mutex>
#include <atomic>
namespace meshlang{
template<typename T>
class mempool_block{
T * freed;
std::mutex locker;
std::atomic<int> rnum,//引用计数器
malloced,used;
public:
inline void pickup(){
rnum++;
}
inline void giveup(){
rnum--;
if(rnum==0){
delete this;
return;
}
}
mempool_block(){
malloced=0;
used=0;
freed=NULL;
rnum=1;
}
~mempool_block(){
T * it1;
T * it=freed;
while(it){
it1=it;
it=it->next;
delete it1;
}
#ifdef DEBUG
int mn=malloced;
int un=used;
printf("malloc:%d\tused:%d\n",mn,un);
#endif
}
T * get(){
used++;
locker.lock();
if(freed){
T * r=freed;
freed=freed->next;
locker.unlock();
return r;
}else{
locker.unlock();
malloced++;
return new T;
}
}
void del(T * f){
locker.lock();
f->next=freed;
freed=f;
locker.unlock();
used--;
}
};
template<typename T>
class mempool{
protected:
mempool_block<T> * parpool;
std::atomic<int> malloced,used;
public:
mempool(){
malloced=0;
used=0;
static mempool_block<T> gbpool;
parpool=&gbpool;
}
~mempool(){
#ifdef DEBUG
int mn=malloced;
int un=used;
printf("malloc:%d\tused:%d\n",mn,un);
#endif
}
T * get(){
malloced++;
used++;
return parpool->get();
}
void del(T * f){
used--;
parpool->del(f);
}
};
}
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/sinriv/meshlang.git
[email protected]:sinriv/meshlang.git
sinriv
meshlang
meshlang
master

搜索帮助