Merge pull request #114 from thestinger/timer

avoid conflict with the POSIX timer_t type
This commit is contained in:
Jason Evans 2014-09-07 22:41:47 -07:00
commit c54f93f186
3 changed files with 11 additions and 11 deletions

View File

@ -7,9 +7,9 @@
typedef struct { typedef struct {
struct timeval tv0; struct timeval tv0;
struct timeval tv1; struct timeval tv1;
} timer_t; } timedelta_t;
void timer_start(timer_t *timer); void timer_start(timedelta_t *timer);
void timer_stop(timer_t *timer); void timer_stop(timedelta_t *timer);
uint64_t timer_usec(const timer_t *timer); uint64_t timer_usec(const timedelta_t *timer);
void timer_ratio(timer_t *a, timer_t *b, char *buf, size_t buflen); void timer_ratio(timedelta_t *a, timedelta_t *b, char *buf, size_t buflen);

View File

@ -1,21 +1,21 @@
#include "test/jemalloc_test.h" #include "test/jemalloc_test.h"
void void
timer_start(timer_t *timer) timer_start(timedelta_t *timer)
{ {
gettimeofday(&timer->tv0, NULL); gettimeofday(&timer->tv0, NULL);
} }
void void
timer_stop(timer_t *timer) timer_stop(timedelta_t *timer)
{ {
gettimeofday(&timer->tv1, NULL); gettimeofday(&timer->tv1, NULL);
} }
uint64_t uint64_t
timer_usec(const timer_t *timer) timer_usec(const timedelta_t *timer)
{ {
return (((timer->tv1.tv_sec - timer->tv0.tv_sec) * 1000000) + return (((timer->tv1.tv_sec - timer->tv0.tv_sec) * 1000000) +
@ -23,7 +23,7 @@ timer_usec(const timer_t *timer)
} }
void void
timer_ratio(timer_t *a, timer_t *b, char *buf, size_t buflen) timer_ratio(timedelta_t *a, timedelta_t *b, char *buf, size_t buflen)
{ {
uint64_t t0 = timer_usec(a); uint64_t t0 = timer_usec(a);
uint64_t t1 = timer_usec(b); uint64_t t1 = timer_usec(b);

View File

@ -1,7 +1,7 @@
#include "test/jemalloc_test.h" #include "test/jemalloc_test.h"
JEMALLOC_INLINE_C void JEMALLOC_INLINE_C void
time_func(timer_t *timer, uint64_t nwarmup, uint64_t niter, void (*func)(void)) time_func(timedelta_t *timer, uint64_t nwarmup, uint64_t niter, void (*func)(void))
{ {
uint64_t i; uint64_t i;
@ -17,7 +17,7 @@ void
compare_funcs(uint64_t nwarmup, uint64_t niter, const char *name_a, compare_funcs(uint64_t nwarmup, uint64_t niter, const char *name_a,
void (*func_a), const char *name_b, void (*func_b)) void (*func_a), const char *name_b, void (*func_b))
{ {
timer_t timer_a, timer_b; timedelta_t timer_a, timer_b;
char ratio_buf[6]; char ratio_buf[6];
time_func(&timer_a, nwarmup, niter, func_a); time_func(&timer_a, nwarmup, niter, func_a);