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