Home
last modified time | relevance | path

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

/dports/benchmarks/fio/fio-3.29/
H A Dgettime-thread.c8 struct fio_ts *fio_ts; variable
15 if (fio_ts) in fio_gtod_init()
18 fio_ts = smalloc(sizeof(*fio_ts)); in fio_gtod_init()
25 if (!fio_ts) in fio_gtod_update()
30 write_seqlock_begin(&fio_ts->seqlock); in fio_gtod_update()
31 fio_ts->ts.tv_sec = __tv.tv_sec; in fio_gtod_update()
32 fio_ts->ts.tv_nsec = __tv.tv_usec * 1000; in fio_gtod_update()
33 write_seqlock_end(&fio_ts->seqlock); in fio_gtod_update()
H A Dgettime.h27 extern struct fio_ts {
30 } *fio_ts;
36 if (!fio_ts)
40 seq = read_seqlock_begin(&fio_ts->seqlock);
41 *ts = fio_ts->ts; in pg_char_and_wchar_strcmp()
42 } while (read_seqlock_retry(&fio_ts->seqlock, seq));
/dports/benchmarks/fio/fio-3.29/t/
H A Ddebug.c4 void *fio_ts; variable