wondering about my VM and whether i should ape the WASM memory model (memory is just pages of bytes, good luck! if you need more then you can request more pages which get tacked onto the end) or if i should take a page from the old Amiga block and basically provide malloc and free as built-in system calls
@eniko WASM ran into the same problem but worse with "every binary shipping its own GC" and I believe that this is why there's on-going design work on a sort of shared GC API that isn't necessarily a whole GC, but provides a bunch of mechanisms to share one across different WASM 'processes' without breaking sandboxing.
I forgot the details but perhaps there is something of interest in there for the issue you're having?
@joepie91 yeah, GC is its own bucket of issues