-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path24_binary_semaphore.c
45 lines (39 loc) · 983 Bytes
/
24_binary_semaphore.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
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <semaphore.h>
#define THREAD_NUM 1
sem_t semFuel;
pthread_mutex_t mutexFuel;
int *fuel;
void* routine(void* args) {
*fuel += 50;
printf("Current value is %d\n", *fuel);
sem_post(&semFuel);
}
int main(int argc, char *argv[]) {
pthread_t th[THREAD_NUM];
fuel = malloc(sizeof(int));
*fuel = 50;
pthread_mutex_init(&mutexFuel, NULL);
sem_init(&semFuel, 0, 0);
int i;
for (i = 0; i < THREAD_NUM; i++) {
if (pthread_create(&th[i], NULL, &routine, NULL) != 0) {
perror("Failed to create thread");
}
}
sem_wait(&semFuel);
printf("Deallocating fuel\n");
free(fuel);
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;
}