| Age | Commit message (Expand) | Author | Lines |
| 2022-06-23 | Remove `is_known_utf8` checks from more tests where it's no longer set. | Dan Gohman | -4/+0 |
| 2022-06-23 | Don't eagerly scan for `is_known_utf8` in `to_ascii_lowercase`/`uppercase`. | Dan Gohman | -12/+2 |
| 2022-06-23 | Panic safety. | Dan Gohman | -7/+7 |
| 2022-06-23 | Optimize `Wtf8Buf::into_string` for the case where it contains UTF-8. | Dan Gohman | -36/+365 |
| 2022-06-23 | Implement IpV{4,6}Addr structs with native Rust encoding | Linus Färnstrand | -3/+3 |
| 2022-06-23 | Represent SocketAddrV4 and SocketAddrV6 as Rust native encoding | Linus Färnstrand | -10/+10 |
| 2022-06-22 | std: rewrite SGX thread parker | joboet | -0/+2 |
| 2022-06-22 | Rollup merge of #96768 - m-ou-se:futex-fuchsia, r=tmandry | Yuki Okushi | -0/+1 |
| 2022-06-21 | Use futex based thread parker on Fuchsia. | Mara Bos | -0/+1 |
| 2022-06-20 | Remove lies in comments. | Mara Bos | -7/+6 |
| 2022-06-19 | Auto merge of #97791 - m-ou-se:const-locks, r=m-ou-se | bors | -3/+8 |
| 2022-06-16 | Leak pthreax_mutex_t when it's dropped while locked. | Mara Bos | -3/+16 |
| 2022-06-15 | std: relax memory orderings in `Parker` | joboet | -8/+7 |
| 2022-06-13 | Lower listen backlog to fix accept crashes | AzureMarker | -6/+13 |
| 2022-06-13 | Horizon OS STD support | Meziu | -0/+5 |
| 2022-06-06 | Make {Mutex, Condvar, RwLock}::new() const. | Mara Bos | -2/+2 |
| 2022-06-06 | Make all {Mutex, Condvar, RwLock}::new #[inline]. | Mara Bos | -1/+6 |
| 2022-06-05 | std: solve priority issue for Parker | joboet | -24/+31 |
| 2022-06-03 | Lazily allocate+initialize locks. | Mara Bos | -8/+83 |
| 2022-06-03 | Use Drop instead of destroy() for locks. | Mara Bos | -25/+0 |
| 2022-05-30 | Remove "sys isn't exported yet" phrase | est31 | -2/+2 |
| 2022-05-19 | std: fix deadlock in `Parker` | joboet | -4/+4 |
| 2022-05-18 | std: use an event flag based thread parker on SOLID | joboet | -3/+100 |
| 2022-05-09 | Use Rust 2021 prelude in std itself. | Mara Bos | -2/+1 |
| 2022-05-06 | Auto merge of #96510 - m-ou-se:futex-bsd, r=Amanieu | bors | -0/+3 |
| 2022-05-05 | Rollup merge of #96619 - akiekintveld:same_mutex_check_relaxed_ordering, r=m-... | Yuki Okushi | -2/+8 |
| 2022-05-03 | Don't use futexes on netbsd. | Mara Bos | -1/+0 |
| 2022-05-01 | Add comment | Austin Kiekintveld | -0/+2 |
| 2022-05-01 | Fix formatting | Austin Kiekintveld | -2/+6 |
| 2022-05-01 | Relax memory ordering used in SameMutexCheck | Austin Kiekintveld | -1/+1 |
| 2022-05-01 | Relax memory ordering used in `min_stack` | Austin Kiekintveld | -2/+2 |
| 2022-04-29 | Use futex-based locks and thread parker on FreeBSD. | Mara Bos | -0/+1 |
| 2022-04-29 | Use futex-based locks and thread parker on DragonFlyBSD. | Mara Bos | -0/+1 |
| 2022-04-29 | Use futex-based locks and thread parker on NetBSD. | Mara Bos | -0/+1 |
| 2022-04-29 | Use futex-based locks and thread parker on OpenBSD. | Mara Bos | -0/+1 |
| 2022-04-28 | Auto merge of #96393 - joboet:pthread_parker, r=thomcc | bors | -16/+28 |
| 2022-04-25 | Make EncodeWide implement FusedIterator | Aron Parker | -1/+4 |
| 2022-04-25 | std: directly use pthread in UNIX parker implementation | joboet | -16/+28 |
| 2022-04-16 | Use a single ReentrantMutex implementation on all platforms. | Mara Bos | -13/+86 |
| 2022-04-14 | Use u32 instead of i32 for futexes. | Mara Bos | -6/+6 |
| 2022-04-06 | Rename RWLock to RwLock in std::sys. | Mara Bos | -18/+18 |
| 2022-03-29 | Make the stdlib largely conform to strict provenance. | Aria Beingessner | -5/+7 |
| 2022-03-21 | Move pthread locks to own module. | Mara Bos | -10/+9 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -6/+6 |
| 2022-02-20 | Remove assertion on output length for `getsockopt`. | Chris Copeland | -1/+0 |
| 2022-02-20 | Fix `setsockopt` and `getsockopt` parameter names. | Chris Copeland | -9/+25 |
| 2022-02-04 | Hide Repr details from io::Error, and rework `io::Error::new_const`. | Thom Chiovoloni | -5/+5 |
| 2022-02-02 | Configure panic hook backtrace behavior | Mark Rousskov | -57/+0 |
| 2022-01-25 | Avoid double panics when using `TempDir` in tests | Chris Denton | -1/+7 |
| 2022-01-17 | Help optimize out backtraces when disabled | Kornel | -7/+18 |