debut implementation death tout est casse
This commit is contained in:
19
srcs/time.c
Normal file
19
srcs/time.c
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "philo.h"
|
||||
|
||||
void init_time(t_philo *philo)
|
||||
{
|
||||
struct timeval stime;
|
||||
|
||||
gettimeofday(&stime, NULL);
|
||||
philo->t_start_s = stime.tv_sec;
|
||||
philo->t_start_u = stime.tv_usec;
|
||||
}
|
||||
|
||||
void update_time(t_philo *philo)
|
||||
{
|
||||
struct timeval stime;
|
||||
|
||||
gettimeofday(&stime, NULL);
|
||||
philo->t_last_meal_s = stime.tv_sec;
|
||||
philo->t_last_meal_u = stime.tv_usec;
|
||||
}
|
||||
Reference in New Issue
Block a user