-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduceconsume.cpp
More file actions
49 lines (44 loc) · 1.04 KB
/
produceconsume.cpp
File metadata and controls
49 lines (44 loc) · 1.04 KB
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
#include<iostream>
#include<unistd.h>
#include<thread>
#include<time.h>
using namespace std;
const int buffmax = 25;
int sharedbuffer[25];
int fullindex = 0;
int freeindex = 0;
void producer(){
int nextproduced = 25;
while(true){
while((freeindex+1)%buffmax == fullindex){
cout<<"\noverflow";
sleep(1);
}
sharedbuffer[freeindex] = nextproduced;
cout<<"\nProduced item at position"<<freeindex;
sleep(1);
freeindex = (freeindex+1)%buffmax;
}
}
void consumer(){
int nextconsumed = 0;
while(true){
while(freeindex == fullindex){
cout<<"\nunderflow...";
sleep(1);
}
nextconsumed = sharedbuffer[fullindex];
cout<<"\nConsumed at position "<<fullindex;
sleep(0.5);
fullindex = (fullindex+1)%buffmax;
}
}
int main()
{
std::thread t1(producer);
std::thread t2(consumer);
t1.join();
t2.join();
cout<<"\ncompleted";
return 0;
}