Home
last modified time | relevance | path

Searched refs:fio_tv (Results 1 – 3 of 3) sorted by relevance

/external/fio/
Dgettime-thread.c9 struct timeval *fio_tv = NULL; variable
16 if (fio_tv) in fio_gtod_init()
19 fio_tv = smalloc(sizeof(struct timeval)); in fio_gtod_init()
20 if (!fio_tv) in fio_gtod_init()
26 if (fio_tv) { in fio_gtod_update()
30 fio_tv->tv_sec = __tv.tv_sec; in fio_gtod_update()
32 fio_tv->tv_usec = __tv.tv_usec; in fio_gtod_update()
Dgettime.h23 extern struct timeval *fio_tv;
29 if (!fio_tv) in fio_gettime_offload()
34 last_sec = tv->tv_sec = fio_tv->tv_sec; in fio_gettime_offload()
35 tv->tv_usec = fio_tv->tv_usec; in fio_gettime_offload()
36 } while (fio_tv->tv_sec != last_sec); in fio_gettime_offload()
/external/fio/t/
Ddebug.c4 struct timeval *fio_tv = NULL; variable