about summary refs log tree commit diff
path: root/library/std/src/sys/stdio/trusty.rs
AgeCommit message (Collapse)AuthorLines
2025-03-27Trusty: Implement write_vectored for stdioThalia Archibald-36/+47
Currently, `write` for stdout and stderr on Trusty is implemented with the semantics of `write_all`. Instead, call the underlying syscall only once in `write` and use the default implementation of `write_all` like other platforms. Also, implement `write_vectored` by adding support for `IoSlice`. Refactor stdin to reuse the unsupported type like #136769.
2025-03-10Update Trusty support to account for recent libstd reorganizationNicole L-0/+81