Address review comments.

Move slow_allocator into a separate header in the snmalloc namespace and
rename it for consistency with the rest of the codebase.  Delete its
copy and move constructors / assignment operators.
This commit is contained in:
David Chisnall
2019-01-18 15:57:28 +00:00
parent e81dacc1c5
commit c3d46a9d8e
3 changed files with 75 additions and 46 deletions

View File

@@ -4,10 +4,10 @@
# include "../ds/bits.h"
# include "../mem/allocconfig.h"
# include <sys/mman.h>
# include <strings.h>
# include <stdio.h>
# include <pthread.h>
# include <stdio.h>
# include <strings.h>
# include <sys/mman.h>
namespace snmalloc
{