diff options
author | Jason Evans <je@fb.com> | 2014-09-08 02:57:24 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2014-09-08 02:57:24 (GMT) |
commit | b67ec3c4973e8f7ca272c13472aa98c8a3ba4de4 (patch) | |
tree | f379c46e8a68e0144160acf2b4233258acfe9f7a /Makefile.in | |
parent | 82e88d1ecfe3d7bf700355cb5023ab61559f9578 (diff) | |
download | jemalloc-b67ec3c4973e8f7ca272c13472aa98c8a3ba4de4.zip jemalloc-b67ec3c4973e8f7ca272c13472aa98c8a3ba4de4.tar.gz jemalloc-b67ec3c4973e8f7ca272c13472aa98c8a3ba4de4.tar.bz2 |
Add a simple timer implementation for use in benchmarking.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index b5f0ee9..d3e91b5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -108,7 +108,7 @@ DOCS_MAN3 := $(DOCS_XML:$(objroot)%.xml=$(srcroot)%.3) DOCS := $(DOCS_HTML) $(DOCS_MAN3) C_TESTLIB_SRCS := $(srcroot)test/src/math.c $(srcroot)test/src/mtx.c \ $(srcroot)test/src/SFMT.c $(srcroot)test/src/test.c \ - $(srcroot)test/src/thd.c + $(srcroot)test/src/thd.c $(srcroot)test/src/timer.c C_UTIL_INTEGRATION_SRCS := $(srcroot)src/util.c TESTS_UNIT := $(srcroot)test/unit/atomic.c \ $(srcroot)test/unit/bitmap.c \ |