summaryrefslogtreecommitdiffstats
path: root/src/base.c
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2016-05-30 01:34:50 (GMT)
committerJason Evans <jasone@canonware.com>2016-06-06 03:42:23 (GMT)
commit498856f44a30b31fe713a18eb2fc7c6ecf3a9f63 (patch)
treebf1eff459e9a04c950b946cb039374a7f9a6e69e /src/base.c
parentd28e5a6696fd59a45c156b5c4dc183bb9ed21596 (diff)
downloadjemalloc-498856f44a30b31fe713a18eb2fc7c6ecf3a9f63.zip
jemalloc-498856f44a30b31fe713a18eb2fc7c6ecf3a9f63.tar.gz
jemalloc-498856f44a30b31fe713a18eb2fc7c6ecf3a9f63.tar.bz2
Move slabs out of chunks.
Diffstat (limited to 'src/base.c')
-rw-r--r--src/base.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/base.c b/src/base.c
index 134018a..3807422 100644
--- a/src/base.c
+++ b/src/base.c
@@ -74,8 +74,7 @@ base_chunk_alloc(tsdn_t *tsdn, size_t minsize)
base_resident += PAGE_CEILING(nsize);
}
}
- extent_init(extent, NULL, addr, csize, 0, true, false, true, true,
- false);
+ extent_init(extent, NULL, addr, csize, 0, true, true, true, false);
return (extent);
}