1
0

🏗️」 wip: testing things, might broke.

This commit is contained in:
2024-07-25 16:13:23 +02:00
parent a663216595
commit 9111e80bdc
10 changed files with 151 additions and 51 deletions

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/07 16:12:20 by adjoly #+# #+# */
/* Updated: 2024/07/22 21:21:21 by adjoly ### ########.fr */
/* Updated: 2024/07/24 23:56:07 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,22 +14,24 @@
#include "philo_msg.h"
#include <stdio.h>
void log_philo(struct timeval t1, t_philo philo)
void log_philo(t_philo philo)
{
uint32_t timestamp;
struct timeval t1;
static pthread_mutex_t print = {0};
gettimeofday(&t1, NULL);
timestamp = get_time_in_ms(philo.t0, t1);
pthread_mutex_lock(&print);
if (philo.state == EAT)
printf("%u %hu %s", timestamp, philo.nbr, EATING_MSG);
printf("%u %hu %s", timestamp, philo.id, EATING_MSG);
else if (philo.state == THINK)
printf("%u %hu %s", timestamp, philo.nbr, THINK_MSG);
printf("%u %hu %s", timestamp, philo.id, THINK_MSG);
else if (philo.state == SLEEP)
printf("%u %hu %s", timestamp, philo.nbr, SLEEP_MSG);
else if (philo.state == DIED)
printf("%u %hu %s", timestamp, philo.nbr, DIED_MSG);
printf("%u %hu %s", timestamp, philo.id, SLEEP_MSG);
else if (philo.state == DEAD)
printf("%u %hu %s", timestamp, philo.id, DIED_MSG);
else if (philo.state == FORK_TAKEN)
printf("%u %hu %s", timestamp, philo.nbr, FORK_MSG);
printf("%u %hu %s", timestamp, philo.id, FORK_MSG);
pthread_mutex_unlock(&print);
}