代码拉取完成,页面将自动刷新
/*================================================================
* Copyright (c) 2015年 lanhu. All rights reserved.
*
* 文件名称:Condition.h
* 创 建 者:Zhang Yuanhao
* 邮 箱:bluefoxah@gmail.com
* 创建日期:2015年01月14日
* 描 述:
*
#pragma once
================================================================*/
#ifndef __CONDITION_H__
#define __CONDITION_H__
#include <pthread.h>
#include "Lock.h"
class CCondition
{
public:
CCondition(CLock* pLock);
~CCondition();
void wait();
/*
* nWaitTime ms
* if recv a signal then return true;
* else return false;
*/
bool waitTime(uint64_t nWaitTime);
void notify();
void notifyAll();
private:
CLock* m_pLock;
pthread_cond_t m_cond;
};
#endif /*defined(__CONDITION_H__) */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。