| Age | Commit message (Expand) | Author | Lines |
| 2022-04-19 | [fuchsia] Add implementation for `current_exe` | David Koloski | -1/+21 |
| 2022-04-19 | espidf: fix stat | Scott Mabin | -15/+30 |
| 2022-04-19 | Use futex locks on emscripten. | Mara Bos | -0/+1 |
| 2022-04-19 | Use futex locks on wasm+atomics. | Mara Bos | -354/+6 |
| 2022-04-19 | Make std::sys::wasm::futex consistent with unix::futex. | Mara Bos | -4/+18 |
| 2022-04-19 | Make std::sys::unix::futex consistent on emscripten. | Mara Bos | -22/+25 |
| 2022-04-19 | Improve AddrParseError description | Chris Morgan | -11/+28 |
| 2022-04-18 | Add a comment explaining the `(())` idiom for empty structs. | Dan Gohman | -0/+2 |
| 2022-04-18 | Split `NotHandle` into `NullHandleError` and `InvalidHandleError`. | Dan Gohman | -14/+31 |
| 2022-04-18 | Move the `Error` impl for `NotHandle` out of platform-independent code. | Dan Gohman | -0/+3 |
| 2022-04-18 | Fix an incorrect word in a comment. | Dan Gohman | -2/+2 |
| 2022-04-18 | Define a dedicated error type for `HandleOrNull` and `HandleOrInvalid`. | Dan Gohman | -6/+20 |
| 2022-04-18 | Auto merge of #96042 - m-ou-se:one-reentrant-mutex, r=Amanieu | bors | -541/+92 |
| 2022-04-18 | Remove forgotten reexport of ReentrantMutex in sys::unsupported. | Mara Bos | -1/+1 |
| 2022-04-17 | Replace sys/unix/weak AtomicUsize with AtomicPtr | CAD97 | -17/+15 |
| 2022-04-17 | Auto merge of #93530 - anonion0:pthread_sigmask_fix, r=JohnTitor | bors | -4/+5 |
| 2022-04-17 | move import to fix warning with emscripten target | Ralf Sager | -1/+2 |
| 2022-04-17 | Revert "Auto merge of #94373 - erikdesjardins:getitinl, r=Mark-Simulacrum" | Erik Desjardins | -2/+2 |
| 2022-04-17 | Remove unnecessary function | dylni | -20/+18 |
| 2022-04-17 | Improve Windows path prefix parsing | dylni | -37/+124 |
| 2022-04-16 | Document rounding for floating-point primitive operations | Matthew Woodcraft | -0/+13 |
| 2022-04-16 | Use a single ReentrantMutex implementation on all platforms. | Mara Bos | -540/+91 |
| 2022-04-15 | Rollup merge of #96040 - m-ou-se:futex-u32, r=Amanieu | Dylan DPC | -53/+55 |
| 2022-04-15 | Rollup merge of #94461 - jhpratt:2024-edition, r=pnkfelix | Dylan DPC | -0/+15 |
| 2022-04-15 | Auto merge of #94079 - petrochenkov:cstr, r=joshtriplett | bors | -1965/+67 |
| 2022-04-15 | Auto merge of #95841 - ChrisDenton:pipe-server, r=m-ou-se | bors | -1/+50 |
| 2022-04-14 | library: Remove definitions and reexports of `strlen` from libstd | Vadim Petrochenkov | -40/+0 |
| 2022-04-14 | library: Use type aliases to make `CStr(ing)` in libcore/liballoc unstable | Vadim Petrochenkov | -4/+16 |
| 2022-04-14 | library: Move `CStr` to libcore, and `CString` to liballoc | Vadim Petrochenkov | -1925/+55 |
| 2022-04-14 | Use u32 instead of i32 for futexes. | Mara Bos | -53/+55 |
| 2022-04-14 | Remove use of `#[rustc_deprecated]` | Jacob Pratt | -163/+157 |
| 2022-04-13 | Auto merge of #96015 - Dylan-DPC:rollup-vhdprid, r=Dylan-DPC | bors | -0/+10 |
| 2022-04-13 | Rollup merge of #95962 - sourcefrog:doc-direntry, r=Dylan-DPC | Dylan DPC | -0/+10 |
| 2022-04-13 | Auto merge of #95727 - m-ou-se:futex-reentrantmutex, r=Amanieu | bors | -7/+101 |
| 2022-04-12 | Rollup merge of #95900 - o01eg:fix-wasm-doc, r=Mark-Simulacrum | fee1-dead | -4/+4 |
| 2022-04-12 | Add missing unsafe marker. | Mara Bos | -1/+1 |
| 2022-04-12 | Allow cvt_nz to be unused on some platforms. | Mara Bos | -0/+1 |
| 2022-04-12 | Add #[deny(unsafe_op_in_unsafe_fn)] to thread_local!(const). | Mara Bos | -0/+1 |
| 2022-04-12 | Add debug asserts to futex ReentrantMutex impl. | Mara Bos | -0/+2 |
| 2022-04-12 | Initialize thread local with const{}. | Mara Bos | -1/+1 |
| 2022-04-12 | Move current_thread_unique_ptr to the only module that uses it. | Mara Bos | -10/+9 |
| 2022-04-12 | Make current_thread_unique_ptr work during thread destruction. | Mara Bos | -1/+3 |
| 2022-04-12 | Add futex-based ReentrantMutex on Linux. | Mara Bos | -6/+88 |
| 2022-04-12 | Add current_thread_unique_ptr() in std::sys_common. | Mara Bos | -0/+7 |
| 2022-04-11 | Document that DirEntry holds the directory open | Martin Pool | -0/+10 |
| 2022-04-11 | Rollup merge of #95801 - m-ou-se:futex-rwlock, r=Amanieu | Dylan DPC | -8/+329 |
| 2022-04-11 | Fix documentation for wasm32-unknown-unknown | O01eg | -4/+4 |
| 2022-04-11 | Use is_ or has_ prefix for pure `-> bool` functions. | Mara Bos | -23/+25 |
| 2022-04-11 | Use compare_exchange_weak in futex rwlock implementation. | Mara Bos | -4/+11 |
| 2022-04-11 | Add comments to futex rwlock implementation. | Mara Bos | -1/+12 |