Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifdef HAVE_CONFIG_H #include "config.h" #endif #include <time.h> #include <sys/time.h> int clock_gettime(int clock __unused, struct timespec *ts) { struct timeval tv; if (gettimeofday(&tv, NULL) == -1) return -1; ts->tv_sec = tv.tv_sec; ts->tv_nsec = tv.tv_usec * 1000; return 0; }