-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WASI gc - fix stack range #80456
WASI gc - fix stack range #80456
Conversation
Tagging subscribers to 'arch-wasm': @lewing Issue Detailsnull
|
Doesn't wasi have pthread_attr_getstack () or a similar API ? Is it planned ? |
Since we are talking about shadow stack in the linear memory, the wasm VM itself would not probably allocate the buffer. I guess POSIX layer in the WASI-SDK could do the allocation, but right now the SDK doesn't even have Threads are WASI proposal at the moment. I don't know enough yet about any of it, but it's on my radar. |
Currently the stack range is
LLVM doesn't give us better range until WASI SDK has llvm/llvm-project@1532be9
inspired by emscripten