condition.h
来自「linux下的线程池,其中使用了条件变量,互斥锁等保持线程同步的变量!」· C头文件 代码 · 共 29 行
H
29 行
#ifndef _CONDITION_H_INCLUDE_
#define _CONDITION_H_INCLUDE_
#ifndef WIN32
#include <pthread.h>
#endif
class Mutex;
class Condition
{
public:
Condition(Mutex&mutex);
virtual ~Condition();
public:
bool signal();
bool broadcast();
bool wait();
int timedwait(const struct timespec* pabstime);
protected:
private:
#ifndef WIN32
pthread_cond_t cond_;
#endif
Mutex& mutex_;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?