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