blob: 87cc895492a5f2ac75809f5e6e1bfedb972a21c3 [file] [log] [blame]
#ifndef FIO_GETTIME_H
#define FIO_GETTIME_H
/*
* Clock sources
*/
enum fio_cs {
CS_GTOD = 1,
CS_CGETTIME,
CS_CPUCLOCK,
};
extern void fio_gettime(struct timeval *, void *);
extern void fio_gtod_init(void);
extern void fio_clock_init(void);
extern int fio_start_gtod_thread(void);
#endif