Files
snmalloc/src/mem/allocslab.h
2019-04-30 09:46:01 +01:00

20 lines
292 B
C++

#pragma once
#include "../mem/baseslab.h"
#include "remoteallocator.h"
namespace snmalloc
{
class Allocslab : public Baseslab
{
protected:
RemoteAllocator* allocator;
public:
RemoteAllocator* get_allocator()
{
return allocator;
}
};
} // namespace snmalloc