nanosecond: initial commit changing timeval to timespec
[fio.git] / fio_time.h
CommitLineData
c223da83
JA
1#ifndef FIO_TIME_H
2#define FIO_TIME_H
3
356014ff
JA
4#include "lib/types.h"
5
48b944c4 6struct thread_data;
8b6a404c
VF
7extern uint64_t utime_since(const struct timespec *,const struct timespec *);
8extern uint64_t utime_since_now(const struct timespec *);
9extern uint64_t mtime_since(const struct timespec *, const struct timespec *);
10extern uint64_t mtime_since_now(const struct timespec *);
11extern uint64_t mtime_since_tv(const struct timeval *, const struct timeval *);
12extern uint64_t time_since_now(const struct timespec *);
8b22c785 13extern uint64_t time_since_genesis(void);
aa60bc58 14extern uint64_t mtime_since_genesis(void);
0de5b26f 15extern uint64_t utime_since_genesis(void);
9cc80b6d
JA
16extern uint64_t usec_spin(unsigned int);
17extern uint64_t usec_sleep(struct thread_data *, unsigned long);
8b6a404c 18extern void fill_start_time(struct timespec *);
c223da83 19extern void set_genesis_time(void);
356014ff
JA
20extern bool ramp_time_over(struct thread_data *);
21extern bool in_ramp_time(struct thread_data *);
c223da83 22extern void fio_time_init(void);
8b6a404c 23extern void timespec_add_msec(struct timespec *, unsigned int);
3aea75b1 24extern void set_epoch_time(struct thread_data *, int);
c223da83
JA
25
26#endif