History log of /wasmtime-44.0.1/crates/test-programs/src/bin/p3_readdir.rs (Results 1 – 3 of 3)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: dev, v36.0.9, v44.0.1, v43.0.2, v36.0.8, v24.0.8, v44.0.0, v43.0.1, v42.0.2, v36.0.7, v24.0.7, v43.0.0
# 5d3627b7 16-Mar-2026 Bailey Hayes <[email protected]>

WASIP3 update to latest rc (#12781)


Revision tags: v42.0.1, v41.0.4, v42.0.0, v40.0.4, v36.0.6, v24.0.6
# bda02c19 13-Feb-2026 Bailey Hayes <[email protected]>

chore: bump to wasi 0.3.0-rc-2026-02-09 (#12557)


Revision tags: v41.0.3, v41.0.2, v41.0.1, v36.0.5, v40.0.3, v41.0.0, v36.0.4, v39.0.2, v40.0.2, v40.0.1, v40.0.0, v39.0.1, v39.0.0, v38.0.4, v37.0.3, v36.0.3, v24.0.5, v38.0.3, v38.0.2, v38.0.1, v37.0.2, v37.0.1, v37.0.0
# 01453cd4 05-Sep-2025 Alex Crichton <[email protected]>

wasip3: Refactor the readdir stream iterators (#11615)

* wasip3: Refactor `BlockingDirectoryStreamProducer`

* Generalize this into a `FallibleStreamProducer` structure
* Don't read the entire itera

wasip3: Refactor the readdir stream iterators (#11615)

* wasip3: Refactor `BlockingDirectoryStreamProducer`

* Generalize this into a `FallibleStreamProducer` structure
* Don't read the entire iterator on the first call to `poll_produce`
* Do a blocking read of `dir.entries()` in the original function call to
avoid handling state in the iterator itself.

* wasip3: Refactor `NonblockingDirectoryStreamProducer`

* Start the reading task before iteration starts to move the spawn out
of the `poll_*` method.
* Rely on fusing behavior of mpsc/tasks to avoid extra state structure.
* Specifically handle 0-length reads.

Mostly try to refactor the state representation to be more struct-like
rather than enum like which is a little easier to follow.

* wasip3: Port `preview1_fd_readdir` to WASIp3

Have at least one test looking at the readdir behavior.

* Fix `finish` handling in `FallibleIteratorProducer`

* Fix a typo

show more ...