summaryrefslogtreecommitdiffstats
path: root/deps/jemalloc/test/include/test/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jemalloc/test/include/test/timer.h')
-rw-r--r--deps/jemalloc/test/include/test/timer.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/deps/jemalloc/test/include/test/timer.h b/deps/jemalloc/test/include/test/timer.h
new file mode 100644
index 0000000..ace6191
--- /dev/null
+++ b/deps/jemalloc/test/include/test/timer.h
@@ -0,0 +1,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);