You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.
linear memory is located in virtual memory o process.
growing the linear memory may require to re-alloc complete array and copying from old to new, larger one.
Instead mmap should be used to reserve the virtual linear memory, mapping it directly onto physical memory pages; this way linear could grow without re-alloc, but just mapping additional physical memory pages into the consecutive mmap-memory address space.
The text was updated successfully, but these errors were encountered:
linear memory is located in virtual memory o process.
growing the linear memory may require to re-alloc complete array and copying from old to new, larger one.
Instead mmap should be used to reserve the virtual linear memory, mapping it directly onto physical memory pages; this way linear could grow without re-alloc, but just mapping additional physical memory pages into the consecutive mmap-memory address space.
The text was updated successfully, but these errors were encountered: