aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2016-02-02 20:27:54 -0800
committerJason Evans <jasone@canonware.com>2016-02-19 20:29:06 -0800
commit9998000b2b77205a37ae630d5fd1ec9ee4569476 (patch)
tree9d0728ddc175321dc413c8a5977efa4291f13799 /Makefile.in
parent94451d184b09fdf57837d0a69ab05ec06317f5ca (diff)
downloadjemalloc-9998000b2b77205a37ae630d5fd1ec9ee4569476.tar.gz
Implement ticker.
Implement ticker, which provides a simple API for ticking off some number of events before indicating that the ticker has hit its limit.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index e314a6f..f3c2e4b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -85,8 +85,8 @@ C_SRCS := $(srcroot)src/jemalloc.c $(srcroot)src/arena.c \
$(srcroot)src/extent.c $(srcroot)src/hash.c $(srcroot)src/huge.c \
$(srcroot)src/mb.c $(srcroot)src/mutex.c $(srcroot)src/pages.c \
$(srcroot)src/prof.c $(srcroot)src/quarantine.c $(srcroot)src/rtree.c \
- $(srcroot)src/stats.c $(srcroot)src/tcache.c $(srcroot)src/time.c \
- $(srcroot)src/tsd.c $(srcroot)src/util.c
+ $(srcroot)src/stats.c $(srcroot)src/tcache.c $(srcroot)src/ticker.c \
+ $(srcroot)src/time.c $(srcroot)src/tsd.c $(srcroot)src/util.c
ifeq ($(enable_valgrind), 1)
C_SRCS += $(srcroot)src/valgrind.c
endif
@@ -143,6 +143,7 @@ TESTS_UNIT := $(srcroot)test/unit/atomic.c \
$(srcroot)test/unit/SFMT.c \
$(srcroot)test/unit/size_classes.c \
$(srcroot)test/unit/stats.c \
+ $(srcroot)test/unit/ticker.c \
$(srcroot)test/unit/time.c \
$(srcroot)test/unit/tsd.c \
$(srcroot)test/unit/util.c \