diff options
author | Qi Wang <interwq@gwu.edu> | 2019-01-15 16:14:18 -0800 |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2019-01-16 12:28:57 -0800 |
commit | 7a815c1b7c796ef35e7ede60cb2dd44aba9626b4 (patch) | |
tree | db84844113cd7a84786889a4611199294e91a3b3 /test | |
parent | bbe8e6a9097203c7b29140b5410c787a6e204593 (diff) |
Un-experimental the huge_threshold feature.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/huge.c | 2 | ||||
-rw-r--r-- | test/unit/mallctl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/huge.c b/test/unit/huge.c index f371198f..7e54d076 100644 --- a/test/unit/huge.c +++ b/test/unit/huge.c @@ -1,7 +1,7 @@ #include "test/jemalloc_test.h" /* Threshold: 2 << 20 = 2097152. */ -const char *malloc_conf = "experimental_huge_threshold:2097152"; +const char *malloc_conf = "huge_threshold:2097152"; #define HUGE_SZ (2 << 20) #define SMALL_SZ (8) diff --git a/test/unit/mallctl.c b/test/unit/mallctl.c index 039a8810..b8b93405 100644 --- a/test/unit/mallctl.c +++ b/test/unit/mallctl.c @@ -164,7 +164,7 @@ TEST_BEGIN(test_mallctl_opt) { TEST_MALLCTL_OPT(const char *, dss, always); TEST_MALLCTL_OPT(unsigned, narenas, always); TEST_MALLCTL_OPT(const char *, percpu_arena, always); - TEST_MALLCTL_OPT(size_t, experimental_huge_threshold, always); + TEST_MALLCTL_OPT(size_t, huge_threshold, always); TEST_MALLCTL_OPT(bool, background_thread, always); TEST_MALLCTL_OPT(ssize_t, dirty_decay_ms, always); TEST_MALLCTL_OPT(ssize_t, muzzy_decay_ms, always); |