-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
bugIncorrect behavior in the current implementation that needs fixingIncorrect behavior in the current implementation that needs fixing
Description
Executing a wasm application on wasmtime that has multiple threads where on thread does file I/O results in a hang on the first file I/O operation.
Disclaimer: I am not a Rust expert. But since the application runs correctly as a OS process I assume that the Rust code is OK. I am also not sure if this is a Rust toolchain problem or a wasmtime problem.
Test Case
Clone https://github.com/dbaeumer/wasm-threads.git
Steps to Reproduce
npm run build:wasm
to build the wasm filenpm run run:wasmtime
to execute the wasm file in wasmtime
Expected Results
The application doesn't hang on the fs::File::open
call
I expect the same result as executing:
npm run build:os
npm run run:os
Actual Results
The application does hang.
Versions and Environment
Rust:
Default host: x86_64-unknown-linux-gnu
rustup home: /xxxx/.rustup
installed targets for active toolchain
--------------------------------------
wasm32-unknown-unknown
wasm32-wasi
wasm32-wasi-preview1-threads
x86_64-unknown-linux-gnu
active toolchain
----------------
stable-x86_64-unknown-linux-gnu (default)
rustc 1.77.2 (25ef9e3d8 2024-04-09)
Wasmtime: wasmtime-cli 19.0.2 (040ec92 2024-04-11)
Operating system:
Distributor ID: Ubuntu
Description: Ubuntu 22.04.4 LTS
Release: 22.04
Codename: jammy
Metadata
Metadata
Assignees
Labels
bugIncorrect behavior in the current implementation that needs fixingIncorrect behavior in the current implementation that needs fixing