42_Philosopher/time.c

15 lines
260 B
C
Raw Normal View History

2023-04-13 09:00:39 -04:00
#include <bits/types/struct_timeval.h>
#include <sys/time.h>
#include <stddef.h>
#include <pthread.h>
size_t get_time(void)
{
size_t time;
struct timeval tv;
gettimeofday(&tv, NULL);
time = tv.tv_sec * 1000000 + tv.tv_usec;
2023-04-19 07:53:50 -04:00
return (time / 1000);
2023-04-13 09:00:39 -04:00
}