-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6_producerConsumer.c
80 lines (76 loc) · 2.02 KB
/
6_producerConsumer.c
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
/*
6. Write a C program to simulate producer-consumer problem using semaphores.
*/
#include <stdio.h>
#include <stdlib.h>
int mutex = 1, full = 0, empty = 3, itemNo = 0; // initialize the semaphores
int waitOperation(int);
int signalOperation(int);
void producer();
void consumer();
int main() {
int n;
int opt;
printf("\n1. Producer\n2. Consumer\n");
do {
printf("\nEnter your choice: ");
scanf("%d", &n);
switch(n) {
case 1:
if((mutex == 1) && (empty != 0)) {
producer();
} else {
printf("Buffer is full!!");
}
break;
case 2:
if((mutex == 1) && (full != 0)) {
consumer();
} else {
printf("Buffer is empty!!");
}
break;
}
printf("\nDo you wish to continue? (Yes = 1, No = 0): ");
scanf("%d", &opt);
} while (opt == 1);
return 0;
}
/**
* @brief is used to wait for the semaphore
* @param s
* @return int
*/
int waitOperation(int s) {
return (--s);
}
/**
* @brief is used to signal the semaphore
* @param s
* @return int
*/
int signalOperation(int s) {
return (++s);
}
/**
* @brief simulates a producer that produces an item and puts it in the buffer
* @return void
*/
void producer() {
mutex = waitOperation(mutex); // acquire mutex lock
full = signalOperation(full);
empty = waitOperation(empty);
printf("Producer produces the item %d", ++itemNo);
mutex = signalOperation(mutex); // release mutex lock
}
/**
* @brief simulates a consumer that consumes the item if it is available in the buffer
* @return void
*/
void consumer() {
mutex = waitOperation(mutex); // acquire mutex lock
full = waitOperation(full);
empty = signalOperation;
printf("Consumer consumes the item %d", itemNo--);
mutex = signalOperation(mutex); // release mutex lock
}