std.experimental.allocator.mmap_allocator
- struct MmapAllocator;
-
Allocator (currently defined only for Posix and Windows) using
mmap
andmunmap
directly (or their Windows equivalents). There is no additional structure: each call toallocate(s)
issues a call tommap(null, s, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0)
, and each call todeallocate(b)
issuesmunmap(b.ptr, b.length)
. SoMmapAllocator
is usually intended for allocating large chunks to be managed by fine-granular allocators.- static shared const MmapAllocator instance;
-
The one shared instance.
- enum size_t alignment;
-
Alignment is page-size and hardcoded to 4096 (even though on certain systems it could be larger).
- shared const pure nothrow @nogc @safe void[] allocate(size_t bytes);
shared const pure nothrow @nogc bool deallocate(void[] b); -
Allocator API.
© 1999–2021 The D Language Foundation
Licensed under the Boost License 1.0.
https://dlang.org/phobos/std_experimental_allocator_mmap_allocator.html