theAllocator

fnRCIAllocator theAllocator() @nogc nothrow @safe @property ref

Gets/sets the allocator for the current thread. This is the default allocator that should be used for allocating thread-local memory. For allocating memory to be shared across threads, use processAllocator (below). By default, theAllocator ultimately fetches memory from processAllocator, which in turn uses the garbage collected heap.

fnvoid theAllocator(RCIAllocator a) nothrow @system @nogc @property

Ditto