Report a bug
		
				If you spot a problem with this page, click here to create a Bugzilla issue.
		
			Improve this page
		
			Quickly fork, edit online, and submit a pull request for this page.
			Requires a signed-in GitHub account. This works well for small changes.
			If you'd like to make larger changes you may want to consider using
			a local clone.
		
	std.experimental.allocator.mallocator
The C heap allocator.
- structMallocator;
- The C heap allocator.Examples:auto buffer = Mallocator.instance.allocate(1024 * 1024 * 4); scope(exit) Mallocator.instance.deallocate(buffer); //... - enum uintalignment;
- The alignment is a static constant equal to platformAlignment, which ensures proper alignment for any D data type.
- shared const pure nothrow @nogc @trusted void[]allocate(size_tbytes);
 shared const pure nothrow @nogc @system booldeallocate(void[]b);
 shared const pure nothrow @nogc @system boolreallocate(ref void[]b, size_ts);
- Standard allocator methods per the semantics defined above. Thedeallocateandreallocatemethods are @system because they may move memory around, leaving dangling pointers in user code. Somewhat paradoxically, malloc is @safe but that's only useful to safe programs that can afford to leak memory allocated.
- static shared Mallocatorinstance;
- Returns the global instance of this allocator type. The C heap allocator is thread-safe, therefore all of its methods and it itself are shared.
 
- structAlignedMallocator;
- Aligned allocator using OS-specific primitives, under a uniform API.Examples:auto buffer = AlignedMallocator.instance.alignedAllocate(1024 * 1024 * 4, 128); scope(exit) AlignedMallocator.instance.deallocate(buffer); //... - enum uintalignment;
- The default alignment is platformAlignment.
- shared nothrow @nogc @trusted void[]allocate(size_tbytes);
- Forwards to alignedAllocate(bytes, platformAlignment).
- shared nothrow @nogc @trusted void[]alignedAllocate(size_tbytes, uinta);
- Uses posix_memalign on Posix and __aligned_malloc on Windows.
- shared nothrow @nogc @system booldeallocate(void[]b);
- Calls free(b.ptr) on Posix and __aligned_free(b.ptr) on Windows.
- shared nothrow @nogc @system boolreallocate(ref void[]b, size_tnewSize);
 shared nothrow @nogc @system boolalignedReallocate(ref void[]b, size_ts, uinta);
- Forwards to alignedReallocate(b, newSize, platformAlignment). Should be used with blocks obtained with allocate otherwise the custom alignment passed with alignedAllocate can be lost.
- static shared AlignedMallocatorinstance;
- Returns the global instance of this allocator type. The C heap allocator is thread-safe, therefore all of its methods andinstanceitself are shared.
 
Copyright © 1999-2024 by the D Language Foundation | Page generated by
Ddoc on (no date time)