HOWTO: fix unit type suffix in "Parameter types" section
[fio.git] / fio_time.h
... / ...
CommitLineData
1#ifndef FIO_TIME_H
2#define FIO_TIME_H
3
4#include "lib/types.h"
5
6struct thread_data;
7extern uint64_t ntime_since(const struct timespec *, const struct timespec *);
8extern uint64_t utime_since(const struct timespec *, const struct timespec *);
9extern uint64_t utime_since_now(const struct timespec *);
10extern uint64_t mtime_since(const struct timespec *, const struct timespec *);
11extern uint64_t mtime_since_now(const struct timespec *);
12extern uint64_t mtime_since_tv(const struct timeval *, const struct timeval *);
13extern uint64_t time_since_now(const struct timespec *);
14extern uint64_t time_since_genesis(void);
15extern uint64_t mtime_since_genesis(void);
16extern uint64_t utime_since_genesis(void);
17extern uint64_t usec_spin(unsigned int);
18extern uint64_t usec_sleep(struct thread_data *, unsigned long);
19extern void fill_start_time(struct timespec *);
20extern void set_genesis_time(void);
21extern bool ramp_time_over(struct thread_data *);
22extern bool in_ramp_time(struct thread_data *);
23extern void fio_time_init(void);
24extern void timespec_add_msec(struct timespec *, unsigned int);
25extern void set_epoch_time(struct thread_data *, int);
26
27#endif