代码拉取完成,页面将自动刷新
/*================================================================
* 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);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。