aboutsummaryrefslogtreecommitdiff
path: root/philo_one/philo_one.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-29 14:56:27 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-29 14:56:27 +0200
commit6bfcd3c6f921e7717e61167b291bb27bd3f66386 (patch)
tree67b2aa4b8a036cb355f90b1f94438b7eb46441f1 /philo_one/philo_one.h
parentac4278405b7a258010219499cccc0dd978201caf (diff)
downloadphilosophers-6bfcd3c6f921e7717e61167b291bb27bd3f66386.tar.gz
philosophers-6bfcd3c6f921e7717e61167b291bb27bd3f66386.tar.bz2
philosophers-6bfcd3c6f921e7717e61167b291bb27bd3f66386.zip
Fixing taking none existing fork in logs
Diffstat (limited to 'philo_one/philo_one.h')
-rw-r--r--philo_one/philo_one.h123
1 files changed, 0 insertions, 123 deletions
diff --git a/philo_one/philo_one.h b/philo_one/philo_one.h
deleted file mode 100644
index 0d6844c..0000000
--- a/philo_one/philo_one.h
+++ /dev/null
@@ -1,123 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* philo_one.h :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2019/11/24 06:11:16 by cacharle #+# #+# */
-/* Updated: 2020/09/28 14:22:57 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#ifndef PHILO_ONE_H
-# define PHILO_ONE_H
-
-# include <unistd.h>
-# include <sys/time.h>
-# include <stdlib.h>
-# include <pthread.h>
-# include <stdbool.h>
-# include <limits.h>
-# include <stdarg.h>
-
-typedef long int t_time;
-
-typedef enum
-{
- EVENT_FORK,
- EVENT_EAT,
- EVENT_SLEEP,
- EVENT_THINK,
- EVENT_DIE
-} t_philo_event;
-
-typedef struct
-{
- int philo_num;
- t_time timeout_death;
- t_time timeout_eat;
- t_time timeout_sleep;
- int meal_num;
- bool all_alive;
- pthread_mutex_t mutex_stdout;
- pthread_mutex_t mutex_all_alive;
-} t_philo_conf;
-
-typedef struct s_philo
-{
- int id;
- bool alive;
- t_time time_last_eat;
- pthread_t thread;
-} t_philo;
-
-typedef struct s_routine_arg
-{
- t_philo_conf *conf;
- t_philo *philo;
- pthread_mutex_t *fork_left;
- pthread_mutex_t *fork_right;
- pthread_mutex_t *mutex_stdout;
-} t_routine_arg;
-
-/*
-** forks.c
-*/
-
-pthread_mutex_t *forks_new(int num);
-void forks_destroy(pthread_mutex_t *forks, int num);
-t_routine_arg *forks_dispatch(
- t_philo *philos,
- pthread_mutex_t *forks,
- t_philo_conf *conf);
-
-/*
-** philo.c
-*/
-
-t_philo *philos_new(int num);
-void philos_destroy(t_philo *philos, int num);
-bool philos_start(
- t_philo *philos,
- t_routine_arg *routine_args,
- int num);
-void philos_join(t_philo *philos, int num);
-
-/*
-** routine.c
-*/
-
-void *routine_philo(t_routine_arg *arg);
-void *routine_death(t_routine_arg *arg);
-
-/*
-** io.c
-*/
-
-void io_eat(t_routine_arg *arg);
-void io_think(t_routine_arg *arg);
-void io_sleep(t_routine_arg *arg);
-void io_die(t_routine_arg *arg);
-
-/*
-** common.c
-*/
-
-bool parse_args(
- t_philo_conf *philo_args,
- int argc,
- char **argv);
-
-/*
-** helper.c
-*/
-
-long int h_atou_strict(char *s);
-void h_putnbr(unsigned long num);
-void h_putchar(char c);
-void h_putstr(char *s);
-int h_err(int ret, const char *format, ...);
-t_time h_time_now(void);
-
-#endif