Merge pull request #65 from microsoft/queue_of_slabs

Use a queue of slabs for free lists
This commit is contained in:
David Chisnall
2019-07-08 20:53:06 +01:00
committed by GitHub
3 changed files with 27 additions and 2 deletions

View File

@@ -215,7 +215,7 @@ namespace snmalloc
meta.link = index;
// Push on the list of slabs for this sizeclass.
sl->insert(meta.get_link(this));
sl->insert_back(meta.get_link(this));
meta.debug_slab_invariant(is_short(), this);
return Superslab::NoSlabReturn;
}