cherrymui
cherrymui
Recent failures are dup of #64726
`fork/exec ...: resource temporarily unavailable` Looks like it is running out of pid? The machine accumulated too many bad/zombie processes? cc @n2vi
Dup of #74187
If we do this, it would probably be `-wasminitmem` and `-wasmmaxmem`. The flag does not apply to other platforms, so it would have `wasm` in the name to be clear....
cc @golang/wasm
Currently it is set to the size of all global data + 16 MB. From the comment it is enough for the runtime to initialize without growing memory. I suppose...
> What's the downside of the linker just defaulting to a lower initial memory? Defaulting to a lower initial memory size is probably fine, as long as it can finish...
While looking into the initial memory size, I found that surprisingly, the runtime currently doesn't use (most of) the initial memory size beyond global data. I sent [CL 621635](https://go.dev/cl/621635) to...
Bumping this up: with the recent fixes, we've lowered the default initial memory, and a small program should just use a relatively small amount of memory (8 MB). Given this,...