init
This commit is contained in:
41
print.c
Normal file
41
print.c
Normal file
@ -0,0 +1,41 @@
|
||||
#include "philo.h"
|
||||
#include <bits/pthreadtypes.h>
|
||||
#include <pthread.h>
|
||||
#include <stddef.h>
|
||||
#include "./time.h"
|
||||
|
||||
static void print(size_t id, char *str)
|
||||
{
|
||||
static pthread_mutex_t print_mutex = PTHREAD_MUTEX_INITIALIZER;
|
||||
size_t time;
|
||||
|
||||
time = get_time();
|
||||
pthread_mutex_lock(&print_mutex);
|
||||
printf("%zu %zu %s\n", time, id, str);
|
||||
pthread_mutex_unlock(&print_mutex);
|
||||
}
|
||||
|
||||
void print_take_a_fork(t_philo *philo)
|
||||
{
|
||||
print(philo->id, "has taken a fork");
|
||||
}
|
||||
|
||||
void print_eating(t_philo *philo)
|
||||
{
|
||||
print(philo->id, "is eating");
|
||||
}
|
||||
|
||||
void print_sleeping(t_philo *philo)
|
||||
{
|
||||
print(philo->id, "is sleeping");
|
||||
}
|
||||
|
||||
void print_thinking(t_philo *philo)
|
||||
{
|
||||
print(philo->id, "is thinking");
|
||||
}
|
||||
|
||||
void print_died(t_philo *philo)
|
||||
{
|
||||
print(philo->id, "is died");
|
||||
}
|
||||
Reference in New Issue
Block a user