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
{{ message }}
This repository was archived by the owner on Oct 21, 2022. It is now read-only.
is often called with a size of about 0x4000. In embedded environments this can be over what's a reasonable stack size, and can cause the stack to blow. Even in a non-embedded environment this is a pretty big stack buffer, though it's not going to be an issue in usermode as there's usually a few MB of stack available.
This is currently hidden behind a crate flag reduced-stack-buffer to use a smaller default stack size. I suggest this be made the default. This flag is not being exposed in wasmi so users of that library cannot control this.