⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mutex.cpp

📁 linux下的线程池,其中使用了条件变量,互斥锁等保持线程同步的变量!
💻 CPP
字号:
#include "mutex.h"

Mutex::Mutex()
{
	
#ifndef WIN32
	pthread_mutex_init(&mutex_,NULL);
#endif
}

Mutex::~Mutex()
{
#ifndef WIN32
	pthread_mutex_destroy(&mutex_);
#endif
	
}

bool Mutex::Lock()
{
#ifndef WIN32
	return pthread_mutex_lock(&mutex_) == 0;
#else
	return true;
#endif
	
}

bool Mutex::Unlock()
{
#ifndef WIN32
	return pthread_mutex_unlock(&mutex_) == 0;
#else
	return true;
#endif
	
}

#ifndef WIN32
Mutex::operator pthread_mutex_t&()
{
	return mutex_;

}
#endif


MutexApply::MutexApply(Mutex& mutex)
:mutex_(mutex)
{

	mutex_.Lock();

}


MutexApply::~MutexApply()
{

	mutex_.Unlock();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -