-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils2.c
More file actions
78 lines (70 loc) · 1.94 KB
/
utils2.c
File metadata and controls
78 lines (70 loc) · 1.94 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* utils2.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bhielsch <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/08 15:51:14 by bhielsch #+# #+# */
/* Updated: 2023/02/08 15:51:16 by bhielsch ### ########.fr */
/* */
/* ************************************************************************** */
#include "philo.h"
long long current_timestamp(void)
{
struct timeval tv;
gettimeofday(&tv, NULL);
return (tv.tv_sec * 1000 + tv.tv_usec / 1000);
}
void join_thread(t_data *data)
{
int i;
i = -1;
while (++i < data->no_philos)
pthread_join(data->tid[i], NULL);
}
int is_philo_dead(t_data *data)
{
pthread_mutex_lock(&data->lock);
if (data->dead == 0)
{
pthread_mutex_unlock(&data->lock);
return (0);
}
else
{
pthread_mutex_unlock(&data->lock);
return (1);
}
}
int is_equal(t_data *data)
{
pthread_mutex_lock(&data->lock);
if (data->finished == data->no_philos)
{
pthread_mutex_unlock(&data->lock);
return (0);
}
else
{
pthread_mutex_unlock(&data->lock);
return (1);
}
}
int finished_eating(t_data *data, int i)
{
pthread_mutex_lock(&data->lock);
pthread_mutex_lock(&data->philos->lock);
if (data->philos[i - 1].eat_count == data->no_meals)
{
pthread_mutex_unlock(&data->lock);
pthread_mutex_unlock(&data->philos->lock);
return (0);
}
else
{
pthread_mutex_unlock(&data->lock);
pthread_mutex_unlock(&data->philos->lock);
return (1);
}
}