-
Notifications
You must be signed in to change notification settings - Fork 0
/
semafor.cpp
163 lines (154 loc) · 4.13 KB
/
semafor.cpp
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#include <iostream>
#include <atomic>
#include <thread>
#include <chrono>
#include <string>
#include <sstream>
using namespace std;
class Semafor
{
private:
//integer z dostępem atomowym
//dostęp atomowy = operacje synchronizowane przez system operacyjny
atomic<bool> token;
public:
//semafor z zadaną liczbą żetonów
//jeden żeton = jeden proces z dostępem do sekcji krytycznej
Semafor(bool token = false) : token(token)
{}
//get żeton
void get() {
//uzyskaj czy mamy teraz żeton
bool old_token = token.load();
//jeśli jest false (brak żetonu)
//lub nie jesteś w stanie zmienić go na false
//uwaga: ta funkcja zmieni liczbę żetonów tylko jeśli jest ich wciąż "stare_zetony"
//czyli inny proces nie pracuje na nich w tej chwili
while (old_token == false ||
!token.compare_exchange_strong(
old_token,
false))
{
//odświeżamy stan żetonu
old_token = token.load();
}
}
//release żeton
void release() {
token.store(true);
}
};
//liczba wątków
const int k = 10;
//liczba do której wątki liczą
const int n = 10000;
//semafor do synchronizacji
Semafor sem(0);
//zmienna do której wątki będą sumowały wartość.
volatile int suma;
//watek sumujący bez zabezpieczen
void niebezpieczny_sumator()
{
for (int i = 0; i < n; i++)
suma++;
}
//watek sumujący za pomocą semafora
void bezpieczny_sumator()
{
for (int i = 0; i < n; i++)
{
sem.get();
suma++;
sem.release();
}
}
volatile int magazyn = 0;
void producent()
{
int i = 100;
while (i > 0)
{
sem.get();
magazyn++;
i--;
stringstream s;
s << "Watek " << this_thread::get_id() << " produkuje (" << magazyn << ")\n";
cout << s.str();
sem.release();
}
}
void konsument()
{
int i = 100;
while (i > 0)
{
sem.get();
if (magazyn == 0)
{
stringstream s;
s << "Watek " << this_thread::get_id() << " nie ma co konsumowac (" << magazyn << ")\n";
cout << s.str();
}
else
{
magazyn--;
i--;
stringstream s;
s << "Watek " << this_thread::get_id() << " konsumuje (" << magazyn << ")\n";
cout << s.str();
}
sem.release();
}
}
/*
int main()
{
{
cout << "Test bez zabezpieczenia, sumowanie " << k << " x " << n << " = " << k * n << endl;
suma = 0;
std::thread watki[k];
for (int i = 0; i < k; i++) {
watki[i] = thread(niebezpieczny_sumator);
}
sem.zwolnij();
for (int i = 0; i < k; i++) {
watki[i].join();
}
cout << "Uzyskana suma: " << suma << endl;
system("pause");
}
{
cout << "Test z semaforem, sumowanie " << k << " x " << n << " = " << k * n << endl;
suma = 0;
std::thread watki[k];
for (int i = 0; i < k; i++) {
watki[i] = thread(bezpieczny_sumator);
}
sem.zwolnij();
for (int i = 0; i < k; i++) {
watki[i].join();
}
cout << "Uzyskana suma: " << suma << endl;
system("pause");
}
{
cout << "Test producent/konsument" << endl;
std::thread producenci[k];
std::thread konsumenci[k];
for (int i = 0; i < k; i++) {
producenci[i] = thread(producent);
}
sem.release();
for (int i = 0; i < k; i++) {
konsumenci[i] = thread(konsument);
}
for (int i = 0; i < k; i++) {
producenci[i].join();
konsumenci[i].join();
}
cout << "Magazyn: " << magazyn << endl;
system("pause");
}
return 0;
}
*/