-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP-C cpp.cpp
65 lines (54 loc) · 1.02 KB
/
P-C cpp.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
#include<iostream>
using namespace std;
int s=1, f=0, empty=5;
int wait(int s)
{
return --s;
}
int signal(int s)
{
return ++s;
}
void producer()
{
s= wait(s);
f=signal(f);
empty=wait(empty);
cout<<" producer running"<<endl;
s=signal(s);
}
void consumer()
{
s= wait(s);
empty=signal(empty);
f=wait(f);
cout<<" consumer running"<<endl;
s=signal(s);
}
int main()
{ cout<<"\t Producer Consumer Problem \t";
cout<<"\n max size is 5";
char choice='Y';
do
{ cout<<"\n 1. producer \n 2. consumer \n 3. quit";
cout<<"\n enter your choice";
int ch;
cin>>ch;
switch(ch)
{
case 1 : if( s==1 && empty!=0)
producer();
else
cout<<" producer waiting \n" ;
break;
case 2 : if( s==1 && f!=0)
consumer();
else
cout<<" consumer waiting \n";
break;
case 3 : exit(1);
} cout<<"do you want to continue? ";
cin>>choice;
} while(choice=='Y'|| choice=='y');
return 0;
}