-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsemaphore_mutex.c
More file actions
54 lines (48 loc) · 1.23 KB
/
semaphore_mutex.c
File metadata and controls
54 lines (48 loc) · 1.23 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
50
51
52
53
54
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <semaphore.h>
#define THREAD_NUM 4
pthread_mutex_t mutexFuel;
sem_t semFuel;
int fuel = 50;
void* routine1(void* args) {
while (1) {
pthread_mutex_lock(&mutexFuel);
fuel += 50;
printf("Current value is %d\n", fuel);
pthread_mutex_unlock(&mutexFuel);
}
}
void* routine2(void* args) {
while (1) {
// pthread_mutex_unlock(&mutexFuel);
usleep(5000);
}
}
int main(int argc, char *argv[]) {
pthread_t th[THREAD_NUM];
// sem_init(&semFuel, 0, 1);
pthread_mutex_init(&mutexFuel, NULL);
int i;
for (i = 0; i < THREAD_NUM; i++) {
if (i % 2 == 0) {
if (pthread_create(&th[i], NULL, &routine1, NULL) != 0) {
perror("Failed to create thread");
}
if (pthread_create(&th[i], NULL, &routine2, NULL) != 0) {
perror("Failed to create thread");
}
}
}
for (i = 0; i < THREAD_NUM; i++) {
if (pthread_join(th[i], NULL) != 0) {
perror("Failed to join thread");
}
}
pthread_mutex_destroy(&mutexFuel);
// sem_destroy(&semFuel);
return 0;
}