ktimer.h 242 B

12345678910111213
  1. #ifndef __LIBOS_KTIMER_H__
  2. #define __LIBOS_KTIMER_H__
  3. #include <sys/time.h>
  4. struct timespec64 {
  5. unsigned long tv_sec; /* seconds */
  6. unsigned long tv_nsec; /* nanoseconds */
  7. };
  8. int do_gettimeofday(struct timespec64 *ts);
  9. #endif