diff options
author | Jason Evans <je@fb.com> | 2012-04-06 07:35:09 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2012-04-11 18:46:18 (GMT) |
commit | 122449b073bcbaa504c4f592ea2d733503c272d2 (patch) | |
tree | 740cd1d5895cbb57bdc492543911e5538f91aee8 /Makefile.in | |
parent | a1ee7838e14b321a97bfacb1f1cf5004198f2203 (diff) | |
download | jemalloc-122449b073bcbaa504c4f592ea2d733503c272d2.zip jemalloc-122449b073bcbaa504c4f592ea2d733503c272d2.tar.gz jemalloc-122449b073bcbaa504c4f592ea2d733503c272d2.tar.bz2 |
Implement Valgrind support, redzones, and quarantine.
Implement Valgrind support, as well as the redzone and quarantine
features, which help Valgrind detect memory errors. Redzones are only
implemented for small objects because the changes necessary to support
redzones around large and huge objects are complicated by in-place
reallocation, to the point that it isn't clear that the maintenance
burden is worth the incremental improvement to Valgrind support.
Merge arena_salloc() and arena_salloc_demote().
Refactor i[v]salloc() to expose the 'demote' option.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 7df4fc6..8aa9425 100644 --- a/Makefile.in +++ b/Makefile.in @@ -49,9 +49,9 @@ CSRCS := @srcroot@src/jemalloc.c @srcroot@src/arena.c @srcroot@src/atomic.c \ @srcroot@src/chunk_dss.c @srcroot@src/chunk_mmap.c \ @srcroot@src/ckh.c @srcroot@src/ctl.c @srcroot@src/extent.c \ @srcroot@src/hash.c @srcroot@src/huge.c @srcroot@src/mb.c \ - @srcroot@src/mutex.c @srcroot@src/prof.c @srcroot@src/rtree.c \ - @srcroot@src/stats.c @srcroot@src/tcache.c @srcroot@src/util.c \ - @srcroot@src/tsd.c + @srcroot@src/mutex.c @srcroot@src/prof.c @srcroot@src/quarantine.c \ + @srcroot@src/rtree.c @srcroot@src/stats.c @srcroot@src/tcache.c \ + @srcroot@src/util.c @srcroot@src/tsd.c ifeq (macho, @abi@) CSRCS += @srcroot@src/zone.c endif |