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
We should provide an allocator for shared memory that also allows for memory to be freed.
It should be API compatible with the bump allocator's core API (allocation methods and array accessors, but no mark or release). However, reliable heap sizing will probably be impossible for the new allocator, as there will need to be some overhead to track object sizes, and there will be overhead from fragmentation if anything is freed.
The text was updated successfully, but these errors were encountered:
We should provide an allocator for shared memory that also allows for memory to be freed.
It should be API compatible with the bump allocator's core API (allocation methods and array accessors, but no mark or release). However, reliable heap sizing will probably be impossible for the new allocator, as there will need to be some overhead to track object sizes, and there will be overhead from fragmentation if anything is freed.
The text was updated successfully, but these errors were encountered: