aboutsummaryrefslogtreecommitdiff
path: root/philo_two/src/routine.c
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-30 10:35:23 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-30 10:35:23 +0200
commit99f67bde096ad84dad5b41bc779ae2ad2d807e6f (patch)
tree282a443477f4d81381a0aa526af1a0aefbf82ae3 /philo_two/src/routine.c
parent94d33564ee659d2fd0b084a4b4046e7b69ee0d9b (diff)
downloadphilosophers-99f67bde096ad84dad5b41bc779ae2ad2d807e6f.tar.gz
philosophers-99f67bde096ad84dad5b41bc779ae2ad2d807e6f.tar.bz2
philosophers-99f67bde096ad84dad5b41bc779ae2ad2d807e6f.zip
Renaming io_* -> event_*, Changed philo_put with only 1 write call
Diffstat (limited to 'philo_two/src/routine.c')
-rw-r--r--philo_two/src/routine.c29
1 files changed, 13 insertions, 16 deletions
diff --git a/philo_two/src/routine.c b/philo_two/src/routine.c
index cfce645..6554c89 100644
--- a/philo_two/src/routine.c
+++ b/philo_two/src/routine.c
@@ -6,17 +6,17 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 23:00:07 by cacharle #+# #+# */
-/* Updated: 2020/09/30 08:41:23 by cacharle ### ########.fr */
+/* Updated: 2020/09/30 09:57:41 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "philo_two.h"
-void *routine_philo(t_routine_arg *arg)
+void *routine_philo(t_philo *arg)
{
pthread_t thread_death;
- io_think(arg);
+ event_think(arg);
if (!arg->conf->all_alive)
return (NULL);
arg->time_last_eat = h_time_now();
@@ -24,18 +24,18 @@ void *routine_philo(t_routine_arg *arg)
return (NULL);
while (arg->conf->all_alive)
{
- io_take_fork(arg);
- io_take_fork(arg);
- io_eat(arg);
+ event_take_fork(arg);
+ event_take_fork(arg);
+ event_eat(arg);
arg->time_last_eat = h_time_now();
- io_sleep(arg);
- io_think(arg);
+ event_sleep(arg);
+ event_think(arg);
}
pthread_join(thread_death, NULL);
return (NULL);
}
-void *routine_death(t_routine_arg *arg)
+void *routine_death(t_philo *arg)
{
t_time current;
@@ -43,19 +43,16 @@ void *routine_death(t_routine_arg *arg)
while (arg->conf->all_alive &&
current - arg->time_last_eat < arg->conf->timeout_death)
current = h_time_now();
- pthread_mutex_lock(&arg->conf->mutex_all_alive);
- io_die(arg);
- arg->conf->all_alive = false;
- pthread_mutex_unlock(&arg->conf->mutex_all_alive);
+ event_die(arg);
return (NULL);
}
-t_routine_arg *routine_args_create(t_philo_conf *conf, sem_t *forks)
+t_philo *routine_create_philos(t_philo_conf *conf, sem_t *forks)
{
int i;
- t_routine_arg *routine_conf;
+ t_philo *routine_conf;
- if ((routine_conf = malloc(sizeof(t_routine_arg) * conf->philo_num)) == NULL)
+ if ((routine_conf = malloc(sizeof(t_philo) * conf->philo_num)) == NULL)
return (NULL);
i = -1;
while (++i < conf->philo_num)