diff options
author | Jason Evans <jasone@canonware.com> | 2014-10-04 06:25:30 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2014-10-04 06:25:30 (GMT) |
commit | fc12c0b8bc1160530d1e3e641b76d2a4f793136f (patch) | |
tree | 84e581c5aca5fa0c81fc13164b602d66e43d1800 /Makefile.in | |
parent | 551ebc43647521bdd0bc78558b106762b3388928 (diff) | |
download | jemalloc-fc12c0b8bc1160530d1e3e641b76d2a4f793136f.zip jemalloc-fc12c0b8bc1160530d1e3e641b76d2a4f793136f.tar.gz jemalloc-fc12c0b8bc1160530d1e3e641b76d2a4f793136f.tar.bz2 |
Implement/test/fix prof-related mallctl's.
Implement/test/fix the opt.prof_thread_active_init,
prof.thread_active_init, and thread.prof.active mallctl's.
Test/fix the thread.prof.name mallctl.
Refactor opt_prof_active to be read-only and move mutable state into the
prof_active variable. Stop leaning on ctl-related locking for
protection.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 5267bea..52f5a9d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -123,9 +123,11 @@ TESTS_UNIT := $(srcroot)test/unit/atomic.c \ $(srcroot)test/unit/mq.c \ $(srcroot)test/unit/mtx.c \ $(srcroot)test/unit/prof_accum.c \ + $(srcroot)test/unit/prof_active.c \ $(srcroot)test/unit/prof_gdump.c \ $(srcroot)test/unit/prof_idump.c \ $(srcroot)test/unit/prof_reset.c \ + $(srcroot)test/unit/prof_thread_name.c \ $(srcroot)test/unit/ql.c \ $(srcroot)test/unit/qr.c \ $(srcroot)test/unit/quarantine.c \ |