diff options
| author | Jason Evans <jasone@canonware.com> | 2016-04-22 14:37:17 -0700 |
|---|---|---|
| committer | Jason Evans <jasone@canonware.com> | 2016-04-22 15:20:06 -0700 |
| commit | 19ff2cefba48d1ddab8fb52e3d78f309ca2553cf (patch) | |
| tree | 25c4cba5d31e58642058e15bbfd8cc834594d150 /Makefile.in | |
| parent | 66cd953514a18477eb49732e40d5c2ab5f1b12c5 (diff) | |
| download | platform_external_jemalloc_new-19ff2cefba48d1ddab8fb52e3d78f309ca2553cf.tar.gz platform_external_jemalloc_new-19ff2cefba48d1ddab8fb52e3d78f309ca2553cf.tar.bz2 platform_external_jemalloc_new-19ff2cefba48d1ddab8fb52e3d78f309ca2553cf.zip | |
Implement the arena.<i>.reset mallctl.
This makes it possible to discard all of an arena's allocations in a
single operation.
This resolves #146.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index a872eb5f..ddc89157 100644 --- a/Makefile.in +++ b/Makefile.in @@ -135,7 +135,9 @@ C_TESTLIB_SRCS := $(srcroot)test/src/btalloc.c $(srcroot)test/src/btalloc_0.c \ $(srcroot)test/src/SFMT.c $(srcroot)test/src/test.c \ $(srcroot)test/src/thd.c $(srcroot)test/src/timer.c C_UTIL_INTEGRATION_SRCS := $(srcroot)src/nstime.c $(srcroot)src/util.c -TESTS_UNIT := $(srcroot)test/unit/atomic.c \ +TESTS_UNIT := \ + $(srcroot)test/unit/arena_reset.c \ + $(srcroot)test/unit/atomic.c \ $(srcroot)test/unit/bitmap.c \ $(srcroot)test/unit/ckh.c \ $(srcroot)test/unit/decay.c \ |
