summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorDavid Goldblatt <davidgoldblatt@fb.com>2017-03-29 00:30:54 (GMT)
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-04-07 21:10:27 (GMT)
commit0a0fcd3e6a0816f0a56fa852416d0ece861c0abb (patch)
tree49b3c934dd8308e7c3bf31692184ef72bb1e8a0d /Makefile.in
parent36bd90b96212772f1adbd421a6b091b542278995 (diff)
downloadjemalloc-0a0fcd3e6a0816f0a56fa852416d0ece861c0abb.zip
jemalloc-0a0fcd3e6a0816f0a56fa852416d0ece861c0abb.tar.gz
jemalloc-0a0fcd3e6a0816f0a56fa852416d0ece861c0abb.tar.bz2
Add hooking functionality
This allows us to hook chosen functions and do interesting things there (in particular: reentrancy checking).
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 4fb852d..26c811c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -98,6 +98,7 @@ C_SRCS := $(srcroot)src/jemalloc.c \
$(srcroot)src/extent_dss.c \
$(srcroot)src/extent_mmap.c \
$(srcroot)src/hash.c \
+ $(srcroot)src/hooks.c \
$(srcroot)src/large.c \
$(srcroot)src/malloc_io.c \
$(srcroot)src/mutex.c \
@@ -161,6 +162,7 @@ TESTS_UNIT := \
$(srcroot)test/unit/extent_quantize.c \
$(srcroot)test/unit/fork.c \
$(srcroot)test/unit/hash.c \
+ $(srcroot)test/unit/hooks.c \
$(srcroot)test/unit/junk.c \
$(srcroot)test/unit/junk_alloc.c \
$(srcroot)test/unit/junk_free.c \