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
I wanted to ask what the current status is of WebAssembly threads with Rust. I know there is this article, which shows how to use threads with wasm-bindgen, however, it's not using the std threads API. I know threads have shipped in Chrome and Firefox and the C++ pthread_create does work. How about Rust? Are there any plans to support std::thread so that we can do something like this in Rust?
thread::spawn(|| {// ...});
The text was updated successfully, but these errors were encountered:
I wanted to ask what the current status is of WebAssembly threads with Rust. I know there is this article, which shows how to use threads with wasm-bindgen, however, it's not using the std threads API. I know threads have shipped in Chrome and Firefox and the C++
pthread_create
does work. How about Rust? Are there any plans to supportstd::thread
so that we can do something like this in Rust?The text was updated successfully, but these errors were encountered: