engines/sg: kill dead function
[fio.git] / fio_time.h
CommitLineData
c223da83
JA
1#ifndef FIO_TIME_H
2#define FIO_TIME_H
3
3d2d14bc 4#include <stdint.h>
c473a9bd 5/* IWYU pragma: begin_exports */
6fe147de 6#include <time.h>
c36173ea 7#include <sys/time.h>
c473a9bd 8/* IWYU pragma: end_exports */
356014ff
JA
9#include "lib/types.h"
10
48b944c4 11struct thread_data;
d6bb626e 12extern uint64_t ntime_since(const struct timespec *, const struct timespec *);
0410e783 13extern uint64_t ntime_since_now(const struct timespec *);
d6bb626e 14extern uint64_t utime_since(const struct timespec *, const struct timespec *);
8b6a404c
VF
15extern uint64_t utime_since_now(const struct timespec *);
16extern uint64_t mtime_since(const struct timespec *, const struct timespec *);
17extern uint64_t mtime_since_now(const struct timespec *);
18extern uint64_t mtime_since_tv(const struct timeval *, const struct timeval *);
19extern uint64_t time_since_now(const struct timespec *);
8b22c785 20extern uint64_t time_since_genesis(void);
aa60bc58 21extern uint64_t mtime_since_genesis(void);
0de5b26f 22extern uint64_t utime_since_genesis(void);
9cc80b6d
JA
23extern uint64_t usec_spin(unsigned int);
24extern uint64_t usec_sleep(struct thread_data *, unsigned long);
8b6a404c 25extern void fill_start_time(struct timespec *);
c223da83 26extern void set_genesis_time(void);
356014ff
JA
27extern bool ramp_time_over(struct thread_data *);
28extern bool in_ramp_time(struct thread_data *);
c223da83 29extern void fio_time_init(void);
8b6a404c 30extern void timespec_add_msec(struct timespec *, unsigned int);
3aea75b1 31extern void set_epoch_time(struct thread_data *, int);
c223da83
JA
32
33#endif