1 Star 0 Fork 3

xjm/轻量级高性能C++ webserver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
locker.h 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
滕宇 提交于 2021-08-16 01:43 . 提交yuserver文件夹
#ifndef LOCKER_H
#define LOCKER_H
#include <exception>
#include <pthread.h>
#include <semaphore.h>
// 线程同步封装类
// 互斥锁类
class locker{
public:
locker(){
if(pthread_mutex_init(&m_mutex, nullptr) != 0){
throw std::exception();
}
}
~locker(){
pthread_mutex_destroy(&m_mutex);
}
bool lock(){
return pthread_mutex_lock(&m_mutex) == 0;
}
bool unlock(){
return pthread_mutex_unlock(&m_mutex) == 0;
}
pthread_mutex_t* get(){
return &m_mutex;
}
private:
pthread_mutex_t m_mutex;
};
// 条件变量
class cond{
public:
cond(){
if(pthread_cond_init(&m_cond, nullptr) != 0){
throw std::exception();
}
}
~cond(){
pthread_cond_destroy(&m_cond);
}
bool wait(pthread_mutex_t* m_mutex){
int ret=0;
ret=pthread_cond_wait(&m_cond, m_mutex);
return ret == 0;
}
bool timewait(pthread_mutex_t* m_mutex, struct timespec t){
int ret=0;
ret=pthread_cond_timedwait(&m_cond, m_mutex, &t);
return ret == 0;
}
bool signal(){
return pthread_cond_signal(&m_cond) == 0;
}
bool broadcast(){
return pthread_cond_broadcast(&m_cond) == 0;
}
private:
pthread_cond_t m_cond;
};
// 信号量类
class sem{
public:
sem(){
if(sem_init(&m_sem, 0, 0) != 0){
throw std::exception();
}
}
sem(int num){
if(sem_init(&m_sem, 0, num) != 0){
throw std::exception();
}
}
~sem(){
sem_destroy(&m_sem);
}
// 等待信号量
bool wait(){
return sem_wait(&m_sem) == 0;
}
// 增加信号量
bool post(){
return sem_post(&m_sem) == 0;
}
private:
sem_t m_sem;
};
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xujingmeng/webserver.git
git@gitee.com:xujingmeng/webserver.git
xujingmeng
webserver
轻量级高性能C++ webserver
master

搜索帮助