| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-05-01 | Delegate to inner `vec::IntoIter` from `env::ArgsOs` | Thalia Archibald | -10/+58 | |
| Delegate from `std::env::ArgsOs` to the methods of the inner platform-specific iterators, when it would be more efficient than just using the default methods of its own impl. Most platforms use `vec::IntoIter` as the inner type, so prioritize delegating to the methods it provides. `std::env::Args` is implemented atop `std::env::ArgsOs` and performs UTF-8 validation with a panic for invalid data. This is a visible effect which users certainly rely on, so we can't skip any arguments. Any further iterator methods would skip some elements, so no change is needed for that type. Add `#[inline]` for any methods which simply wrap the inner iterator. | ||||
| 2025-04-27 | use generic Atomic type where possible | Christopher Durham | -2/+2 | |
| in core/alloc/std only for now, and ignoring test files Co-authored-by: Pavel Grigorenko <GrigorenkoPV@ya.ru> | ||||
| 2025-04-14 | Clarify why SGX code specifies linkage/symbol names for certain statics | Jethro Beekman | -0/+1 | |
| Also update the symbol names as items have moved around a bit. The actual name isn't that important, it just needs to be unique. But for debugging it can be useful for it to point to the right place. | ||||
| 2025-04-12 | Move args into std::sys | Thalia Archibald | -0/+61 | |
