about summary refs log tree commit diff
path: root/library/std/src/sys/pal/hermit/io.rs
AgeCommit message (Collapse)AuthorLines
2025-02-07std: move `io` module out of `pal`joboet-87/+0
2024-11-09Add as_slice/into_slice for IoSlice/IoSliceMut.Alona Enraght-Moony-1/+6
Co-authored-by: Mike Pedersen <mike@mikepedersen.dk> Co-authored-by: Nathan West <Lucretiel@gmail.com>
2024-07-29Reformat `use` declarations.Nicholas Nethercote-2/+2
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2024-06-07add HermitOS support of vectored read/write operationsStefan Lankes-0/+82
In general, the I/O interface of hermit-abi is more POSIX-like interface. Consequently, platform abstraction layer for HermitOS has slightly adjusted and some inaccuracies remove.