-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path14-2locker.h
102 lines (94 loc) · 2.07 KB
/
14-2locker.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#ifndef LOCKER_H
#define LOCKER_H
#include <exception>
#include <pthread.h>
#include <semaphore.h>
// 封装信号量的类
class sem
{
public:
sem()
{
// 创建并初始化信号量
if (sem_init(&m_sem, 0, 0) != 0) {
throw std::exception();
}
}
~sem()
{
sem_destroy(&m_sem); // 销毁信号量
}
bool wait()
{
return sem_wait(&m_sem) == 0; // 等待信号量,P
}
bool post()
{
return sem_post(&m_sem) == 0; // 增加信号量,V
}
private:
sem_t m_sem;
};
// 封装互斥锁的类
class locker
{
public:
locker()
{
// 创建并初始化互斥锁
if (pthread_mutex_init(&m_mutex, NULL) != 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; // 释放互斥锁
}
private:
pthread_mutex_t m_mutex;
};
// 封装条件变量的类
class cond
{
public:
cond() // 创建并初始化条件变量
{
if (pthread_mutex_init(&m_mutex, NULL) != 0) {
throw std::exception();
}
if (pthread_cond_init(&m_cond, NULL) != 0) {
// 构造函数一旦出现问题就立即释放已经成功分配的资源
pthread_mutex_destroy(&m_mutex);
throw std::exception();
}
}
~cond() // 销毁条件变量
{
pthread_mutex_destroy(&m_mutex);
pthread_cond_destroy(&m_cond);
}
bool wait() // 等待条件变量
{
int ret = 0;
pthread_mutex_lock(&m_mutex); // 必须先加锁
ret = pthread_cond_wait(&m_cond, &m_mutex);
pthread_mutex_unlock(&m_mutex);
return ret == 0;
}
bool signal() // 唤醒等待条件变量线程
{
return pthread_cond_signal(&m_cond) == 0;
}
private:
pthread_mutex_t m_mutex;
pthread_cond_t m_cond;
};
#endif