summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorQi Wang <interwq@gwu.edu>2019-01-28 15:25:30 -0800
committerQi Wang <interwq@gmail.com>2019-02-04 14:38:54 -0800
commit8e9a613122251d4c519059f8e1e11f27f6572b4c (patch)
treefc37af489407106d059041d561f3a622bc7fa39e /include
parente13400c919e6b6730284ff011875bbcdd6821f1c (diff)
Disable muzzy decay by default.
Diffstat (limited to 'include')
-rw-r--r--include/jemalloc/internal/arena_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/arena_types.h b/include/jemalloc/internal/arena_types.h
index 8917ea3a..624937e4 100644
--- a/include/jemalloc/internal/arena_types.h
+++ b/include/jemalloc/internal/arena_types.h
@@ -9,7 +9,7 @@
/* Default decay times in milliseconds. */
#define DIRTY_DECAY_MS_DEFAULT ZD(10 * 1000)
-#define MUZZY_DECAY_MS_DEFAULT ZD(10 * 1000)
+#define MUZZY_DECAY_MS_DEFAULT (0)
/* Number of event ticks between time checks. */
#define DECAY_NTICKS_PER_UPDATE 1000