Is WebAssembly a target mimalloc may eventually support?
WebAssembly doesn't have mmap(); only a single, linear memory segment that can grow. Allocating memory from the host must be done in a way similar to sbrk(2) as in the good old days.
Is it something mimalloc could do?
Is WebAssembly a target mimalloc may eventually support?
WebAssembly doesn't have
mmap(); only a single, linear memory segment that can grow. Allocating memory from the host must be done in a way similar tosbrk(2)as in the good old days.Is it something
mimalloccould do?