blob: 87cc895492a5f2ac75809f5e6e1bfedb972a21c3 [file] [log] [blame]
Jens Axboea7346812012-02-09 15:02:39 +01001#ifndef FIO_GETTIME_H
2#define FIO_GETTIME_H
3
4/*
5 * Clock sources
6 */
7enum fio_cs {
8 CS_GTOD = 1,
9 CS_CGETTIME,
10 CS_CPUCLOCK,
11};
12
13extern void fio_gettime(struct timeval *, void *);
14extern void fio_gtod_init(void);
15extern void fio_clock_init(void);
16extern int fio_start_gtod_thread(void);
17
18#endif