-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path15-producer-consumer-deadlock.c
132 lines (109 loc) · 3.1 KB
/
15-producer-consumer-deadlock.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
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
// Run Using "gcc -pthread 15_producer_consumer_deadlock.c && ./a.out"
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#define MAX 10
#define OPR 5
pthread_mutex_t buf_lock;
pthread_mutex_t num_lock;
typedef struct str {
pthread_mutex_t* buf_lock;
pthread_mutex_t* num_lock;
int* buffer;
int* head;
int* tail;
int* num;
} str;
void* producer(pthread_mutex_t* buf_lock, int* buffer, int* head, int* tail, int data) {
pthread_mutex_lock(buf_lock);
if ((*tail + 1) % MAX == *head) {
printf("Buffer is full. Producer is waiting.\n");
while ((*tail + 1) % MAX == *head) usleep(5);
}
buffer[*tail] = data;
*tail = (*tail + 1) % MAX;
pthread_mutex_unlock(buf_lock);
return NULL;
}
int consume(pthread_mutex_t* buf_lock, int* buffer, int* head, int* tail) {
pthread_mutex_lock(buf_lock);
if (*head == *tail) {
printf("Buffer is empty. Consumer is waiting.\n");
while (*head == *tail) usleep(5);
}
int data = buffer[*head];
*head = (*head + 1) % MAX;
pthread_mutex_unlock(buf_lock);
return data;
}
void* producer_thread(void* vargp) {
str* s = (str*)vargp;
pthread_mutex_t* buf_lock = s->buf_lock;
pthread_mutex_t* num_lock = s->num_lock;
int* buffer = s->buffer;
int* head = s->head;
int* tail = s->tail;
int* num = s->num;
free(s);
srand(time(NULL));
for (int i = 0; i < OPR; i++) {
int data = rand() % 100 + 1;
pthread_mutex_lock(num_lock);
printf("num = %d + %d = %d\n", *num, data, *num + data);
*num = *num + data;
pthread_mutex_unlock(num_lock);
producer(buf_lock, buffer, head, tail, data);
// usleep(100);
}
return NULL;
}
void* consumer_thread(void* vargp) {
str* s = (str*)vargp;
pthread_mutex_t* buf_lock = s->buf_lock;
pthread_mutex_t* num_lock = s->num_lock;
int* buffer = s->buffer;
int* head = s->head;
int* tail = s->tail;
int* num = s->num;
free(s);
srand(time(NULL));
for (int i = 0; i < OPR; i++) {
int data = consume(buf_lock, buffer, head, tail);
pthread_mutex_lock(num_lock);
printf("num = %d - %d = %d\n", *num, data, *num - data);
*num = *num - data;
pthread_mutex_unlock(num_lock);
// usleep(100);
}
return NULL;
}
int main() {
int buffer[MAX];
int head = 0, tail = 0;
int num = 0;
pthread_t p;
pthread_t c;
// Mutex Locked Increment
printf("Locked Increment (Single Producer-Consumer):\n");
str* s1 = (str*)malloc(sizeof(str));
s1->buf_lock = &buf_lock;
s1->num_lock = &num_lock;
s1->buffer = buffer;
s1->head = &head;
s1->tail = &tail;
s1->num = #
pthread_create(&p, NULL, producer_thread, s1);
str* s2 = (str*)malloc(sizeof(str));
s2->buf_lock = &buf_lock;
s2->num_lock = &num_lock;
s2->buffer = buffer;
s2->head = &head;
s2->tail = &tail;
s2->num = #
pthread_create(&c, NULL, consumer_thread, s2);
pthread_join(p, NULL);
pthread_join(c, NULL);
return 0;
}