about summary refs log tree commit diff
path: root/library/std/src/sys/args/unix.rs
AgeCommit message (Collapse)AuthorLines
2025-04-27use generic Atomic type where possibleChristopher Durham-3/+3
in core/alloc/std only for now, and ignoring test files Co-authored-by: Pavel Grigorenko <GrigorenkoPV@ya.ru>
2025-04-21Unify owned `Env` types between platformsThalia Archibald-4/+1
Also, update the same pattern of reuse in `sys::args` to match.
2025-04-13Hermit: Unify std::env::args with UnixThalia Archibald-1/+5
The only differences between these implementations are that Unix uses relaxed ordering, but Hermit uses acquire/release, and Unix truncates `argv` at the first null pointer, but Hermit doesn't. Since Hermit aims for Unix compatibility, unify it with Unix.
2025-04-12Unify owned Args types between platformsThalia Archibald-38/+6
2025-04-12Use unsupported args for espidf and vitaThalia Archibald-13/+0
2025-04-12Move args into std::sysThalia Archibald-0/+241