Added vmem arena file

Going to need to roll my own for my use case.
This commit is contained in:
Edward R. Gonzalez 2024-03-05 10:18:38 -05:00
parent bba45ce96b
commit fd44001456

View File

@ -0,0 +1,10 @@
/*
Odin's virtual arena allocator doesn't do what I ideally want for allocation resizing or growing from a large vmem reserve.
So this is a simple virtual memory backed arena allocator designed
to take advantage of one large contigous reserve of memory.
With the expectation that resizes with its interface will only occur using the last allocated block.
*/
package sectr