Standard library: Memory allocation #5
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: cli/q#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.alloc
andmem.free
for low-level access to system memory.The initial implementation will be "unmanaged", that means we're directly returning an
mmap
region.Future versions doing a full implementation of a managed memory allocator are not tracked by this issue.