summaryrefslogtreecommitdiffstats
path: root/deps/jemalloc/test/include/test/timer.h
blob: ace6191b85af53a1254f00427ff54f7d0b9b073d (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Simple timer, for use in benchmark reporting. */

typedef struct {
	nstime_t t0;
	nstime_t t1;
} timedelta_t;

void	timer_start(timedelta_t *timer);
void	timer_stop(timedelta_t *timer);
uint64_t	timer_usec(const timedelta_t *timer);
void	timer_ratio(timedelta_t *a, timedelta_t *b, char *buf, size_t buflen);