2016-11-08 14:32:25 +00:00
|
|
|
module vibe.internal.allocator;
|
|
|
|
|
|
|
|
public import std.experimental.allocator;
|
|
|
|
public import std.experimental.allocator.building_blocks.allocator_list;
|
|
|
|
public import std.experimental.allocator.building_blocks.null_allocator;
|
|
|
|
public import std.experimental.allocator.building_blocks.region;
|
|
|
|
public import std.experimental.allocator.building_blocks.stats_collector;
|
|
|
|
public import std.experimental.allocator.gc_allocator;
|
|
|
|
public import std.experimental.allocator.mallocator;
|
2017-06-28 12:05:50 +00:00
|
|
|
|
|
|
|
// NOTE: this needs to be used instead of theAllocator due to Phobos issue 17564
|
|
|
|
@property IAllocator vibeThreadAllocator()
|
|
|
|
@safe nothrow @nogc {
|
|
|
|
static IAllocator s_threadAllocator;
|
|
|
|
if (!s_threadAllocator)
|
|
|
|
s_threadAllocator = () @trusted { return allocatorObject(GCAllocator.instance); } ();
|
|
|
|
return s_threadAllocator;
|
|
|
|
}
|