3 Star 2 Fork 5

张远浩/call_demo_server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Condition.cpp 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
zhangyuanhao 提交于 2015-08-15 22:38 . [MOD] 修改实现
/*================================================================
* Copyright (c) 2015年 lanhu. All rights reserved.
*
* 文件名称:Condition.cpp
* 创 建 者:Zhang Yuanhao
* 邮 箱:bluefoxah@gmail.com
* 创建日期:2015年01月14日
* 描 述:
*
================================================================*/
#include <assert.h>
#include "Condition.h"
CCondition::CCondition(CLock* pLock):m_pLock(pLock)
{
if(!pLock)
{
assert(false);
}
pthread_cond_init(&m_cond, NULL);
}
CCondition::~CCondition()
{
pthread_cond_destroy(&m_cond);
}
void CCondition::wait()
{
pthread_cond_wait(&m_cond, &m_pLock->getMutex());
}
/*
* nWaitTime ms
* if recv a signal then return true;
* else return false;
*/
bool CCondition::waitTime(uint64_t nWaitTime)
{
uint64_t nTime = nWaitTime * 1000000;
struct timespec sTime;
uint64_t nSec = nTime / (1000000000);
uint64_t nNsec = nTime % (1000000000);
sTime.tv_sec = time(NULL) + (uint32_t)nSec;
sTime.tv_nsec = (uint32_t)nNsec;
if(ETIMEDOUT == pthread_cond_timedwait(&m_cond, &m_pLock->getMutex(), &sTime))
{
return false;
}
return true;
}
void CCondition::notify()
{
pthread_cond_signal(&m_cond);
}
void CCondition::notifyAll()
{
pthread_cond_broadcast(&m_cond);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bluefoxah/call_demo_server.git
git@gitee.com:bluefoxah/call_demo_server.git
bluefoxah
call_demo_server
call_demo_server
master

搜索帮助