1 Star 0 Fork 0

同济大学计算机开放实验室/libco

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
co_comm.h 399 Bytes
一键复制 编辑 原始数据 按行查看 历史
princewen 提交于 2020-10-27 16:24 . Add hook for gethostbyname_r
#pragma once
#include "co_routine.h"
class clsCoMutex {
public:
clsCoMutex();
~clsCoMutex();
void CoLock();
void CoUnLock();
private:
stCoCond_t* m_ptCondSignal;
int m_iWaitItemCnt;
};
class clsSmartLock {
public:
clsSmartLock(clsCoMutex* m) {
m_ptMutex = m;
m_ptMutex->CoLock();
}
~clsSmartLock() { m_ptMutex->CoUnLock(); }
private:
clsCoMutex* m_ptMutex;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/tjopenlab/libco.git
git@gitee.com:tjopenlab/libco.git
tjopenlab
libco
libco
master

搜索帮助