Standard library: Memory allocation #5
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
We need to implement
mem.allocandmem.freefor low-level access to system memory.The initial implementation will be "unmanaged", that means we're directly returning an
mmapregion.Future versions doing a full implementation of a managed memory allocator are not tracked by this issue.
Implemented in
2e904095e7.