diff options
author | Jason Evans <jasone@canonware.com> | 2016-05-30 01:34:50 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-06-06 03:42:23 (GMT) |
commit | 498856f44a30b31fe713a18eb2fc7c6ecf3a9f63 (patch) | |
tree | bf1eff459e9a04c950b946cb039374a7f9a6e69e /src/base.c | |
parent | d28e5a6696fd59a45c156b5c4dc183bb9ed21596 (diff) | |
download | jemalloc-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.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); } |