-
Notifications
You must be signed in to change notification settings - Fork 0
/
JantarDosFilosofos.c
136 lines (108 loc) · 2.09 KB
/
JantarDosFilosofos.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
133
134
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <windows.h>
#define N 5
#define ESQUERDA (i+N-1)%N
#define DIREITA (i+1)%N
#define PENSANDO 0
#define FOME 1
#define COMENDO 2
//Aluno: Victor Ribeiro da Silva
typedef int semaphore;
int state[N];
int identificador_filosofos[N];
pthread_mutex_t s[N];
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
void pensar(int n){
//Filosofo est� pensando
Sleep(1);
}
void comer(int n){
//Filosofo est� comendo
Sleep(1);
}
void estados(){
int i;
printf("Filosofos que estao COMENDO: ");
for(i = 0; i < N; i ++){
if(state[i] == COMENDO){
printf("%d ",i);
}
}
printf("\n");
printf("\n");
printf("Filosofos que estao PENSANDO: ");
for(i = 0; i < N; i ++){
if(state[i] == PENSANDO){
printf("%d ",i);
}
}
printf("\n");
printf("\n");
printf("Filosofos que estao COM FOME: ");
for(i = 0; i < N; i ++){
if(state[i] == FOME){
printf("%d ",i);
}
}
printf("\n");
printf("--------------------------------------|\n");
Sleep(1500);
}
void test(int i){
if(state[i] == FOME && state[ESQUERDA] != COMENDO && state[DIREITA] != COMENDO){
state[i] = COMENDO;
pthread_mutex_unlock(&(s[i]));
}
}
void pegar_garfos(int i){
pthread_mutex_lock(&mutex);
estados();
state[i] = FOME;
estados();
test(i);
estados();
pthread_mutex_unlock(&mutex);
pthread_mutex_lock(&(s[i]));
}
void devolver_garfos(int i){
pthread_mutex_lock(&mutex);
estados();
state[i] = PENSANDO;
estados();
test(ESQUERDA);
estados();
test(DIREITA);
estados();
pthread_mutex_unlock(&mutex);
}
void *filosofo(void *ptr){
while(1){
int *n = ptr;
pensar(*n);
pegar_garfos(*n);
comer(*n);
devolver_garfos(*n);
}
}
int main(){
int i;
pthread_t filosofos[N];
for(i = 0; i < N; i++){
pthread_mutex_init(&(s[i]), NULL);
}
for(i = 0; i < N; i++){
identificador_filosofos[i] = i;
}
for(i = 0; i< N; i++){
pthread_t t;
int result;
result = pthread_create(&(filosofos[i]), NULL, filosofo, &identificador_filosofos[i]);
}
for(i = 0; i < N; i++){
pthread_join(filosofos[i], NULL);
}
return 0;
}