forked from shikharkohli/c---files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMutex.cpp
executable file
·263 lines (244 loc) · 4.9 KB
/
Mutex.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
#include<pthread.h>
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
#define QUEUESIZE 10
#define LOOP 20
using namespace std;
void *producer(void *args);
void *consumer(void *args);
typedef struct{
int buf[QUEUESIZE];
long head, tail;
int full, empty;
pthread_mutex_t *mut;
pthread_cond_t *notFull, *notEmpty;
}queue;
queue *queueInit(void);
void queueDelete(queue *q);
void queueAdd(queue *q, int in);
void queueDel(queue *q, int *out);
int main()
{
queue *fifo;
pthread_t pro, con;
fifo = queueInit();
if( fifo == NULL)
{
fprintf(stderr, "main: queue Init failed.\n");
exit(1);
}
pthread_create(&pro, NULL, producer, fifo);
pthread_create(&con, NULL, consumer, fifo);
pthread_join(pro, NULL);
pthread_join(con, NULL);
queueDelete(fifo);
return 0;
}
void *producer(void *q)
{
queue *fifo;
int i;
fifo = (queue *) q;
for(i=0; i<LOOP;i++)
{
pthread_mutex_lock(fifo->mut);
while(fifo->full)
{
printf("Produce:queue full.\n");
pthread_cond_wait(fifo->notFull, fifo->mut);
}
queueAdd(fifo,i);
pthread_mutex_unlock(fifo->mut);
pthread_cond_signal(fifo->notEmpty);
printf("Producer: put %d.\n", i);
usleep(100000);
}
for(i=0; i<LOOP;i++)
{
pthread_mutex_lock(fifo->mut);
while(fifo->full)
{
printf("Produce:queue full.\n");
pthread_cond_wait(fifo->notFull, fifo->mut);
}
queueAdd(fifo,i);
pthread_mutex_unlock(fifo->mut);
pthread_cond_signal(fifo->notEmpty);
printf("Producer: put %d.\n", i);
usleep(200000);
}
return(NULL);
}
void *consumer(void *q)
{
queue *fifo;
int i,d;
fifo = (queue *) q;
for(i=0; i<LOOP;i++)
{
pthread_mutex_lock(fifo->mut);
while(fifo->empty)
{
printf("Consumer:queue empty.\n");
pthread_cond_wait(fifo->notEmpty, fifo->mut);
}
queueDel(fifo,&d);
pthread_mutex_unlock(fifo->mut);
pthread_cond_signal(fifo->notFull);
printf("consumer: received %d.\n", d);
usleep(200000);
}
for(i=0; i<LOOP;i++)
{
pthread_mutex_lock(fifo->mut);
while(fifo->empty)
{
printf("Consumer:queue empty.\n");
pthread_cond_wait(fifo->notEmpty, fifo->mut);
}
queueDel(fifo,&d);
pthread_mutex_unlock(fifo->mut);
pthread_cond_signal(fifo->notFull);
printf("consumer: received %d.\n", d);
usleep(50000);
}
return(NULL);
}
queue *queueInit()
{
queue *q;
q= (queue *) malloc(sizeof(queue));
if(q==NULL) return(NULL);
q->empty = 1;
q->full = 0;
q->head =0;
q->tail=0;
q->mut = (pthread_mutex_t *) malloc(sizeof(pthread_mutex_t));
pthread_mutex_init(q->mut, NULL);
q->notFull= (pthread_cond_t *) malloc(sizeof(pthread_cond_t));
pthread_cond_init(q->notFull, NULL);
q->notEmpty = (pthread_cond_t *) malloc(sizeof(pthread_cond_t));
pthread_cond_init(q->notEmpty, NULL);
return(q);
}
void queueDelete(queue *q)
{
pthread_mutex_destroy(q->mut);
free(q->mut);
pthread_cond_destroy(q->notFull);
free(q->notFull);
pthread_cond_destroy(q->notEmpty);
free(q->notEmpty);
free(q);
}
void queueAdd(queue *q, int in)
{
q->buf[q->tail] = in;
q->tail++;
if(q->tail == QUEUESIZE)
q->tail =0;
if(q->tail == q->head)
q->full =1;
q->empty =0;
return;
}
void queueDel(queue *q, int *out)
{
*out = q->buf[q->head];
q->head++;
if(q->head == QUEUESIZE)
q->head =0;
if(q->tail == q->head)
q->empty =1;
q->full =0;
return;
}
/*
consumer: received 0.
Producer: put 0.
Producer: put 1.
consumer: received 1.
Producer: put 2.
Producer: put 3.
consumer: received 2.
Producer: put 4.
Producer: put 5.
consumer: received 3.
Producer: put 6.
Producer: put 7.
consumer: received 4.
Producer: put 8.
Producer: put 9.
consumer: received 5.
Producer: put 10.
Producer: put 11.
consumer: received 6.
Producer: put 12.
Producer: put 13.
consumer: received 7.
Producer: put 14.
Producer: put 15.
consumer: received 8.
Producer: put 16.
Producer: put 17.
consumer: received 9.
Producer: put 18.
Producer: put 19.
consumer: received 10.
Producer: put 0.
consumer: received 11.
Producer: put 1.
consumer: received 12.
Producer: put 2.
consumer: received 13.
Producer: put 3.
consumer: received 14.
Producer: put 4.
consumer: received 15.
Producer: put 5.
consumer: received 16.
Producer: put 6.
consumer: received 17.
Producer: put 7.
consumer: received 18.
Producer: put 8.
consumer: received 19.
Producer: put 9.
consumer: received 0.
Producer: put 10.
consumer: received 1.
consumer: received 2.
consumer: received 3.
consumer: received 4.
Producer: put 11.
consumer: received 5.
consumer: received 6.
consumer: received 7.
consumer: received 8.
Producer: put 12.
consumer: received 9.
consumer: received 10.
consumer: received 11.
Producer: put 13.
consumer: received 12.
consumer: received 13.
Consumer:queue empty.
Producer: put 14.
consumer: received 14.
Consumer:queue empty.
Producer: put 15.
consumer: received 15.
Consumer:queue empty.
Producer: put 16.
consumer: received 16.
Consumer:queue empty.
Producer: put 17.
consumer: received 17.
Consumer:queue empty.
Producer: put 18.
consumer: received 18.
Consumer:queue empty.
Producer: put 19.
consumer: received 19.
*/