server-skynet-source-3rd-je.../test/include/test/timer.h
Daniel Micay c3bfe9569a avoid conflict with the POSIX timer_t type
It hits a compilation error with glibc 2.19 without a rename.
2014-09-08 01:20:44 -04:00

16 lines
353 B
C

/*
* Simple timer, for use in benchmark reporting.
*/
#include <sys/time.h>
typedef struct {
struct timeval tv0;
struct timeval tv1;
} 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);