| Age | Commit message (Expand) | Author | Lines |
| 2022-04-28 | Yield the thread when waiting to delete a file | Chris Denton | -0/+3 |
| 2022-04-28 | std: simplify UNIX parker timeouts | joboet | -59/+21 |
| 2022-04-28 | Rollup merge of #96397 - AronParker:issue-96368-fix, r=dtolnay | Dylan DPC | -1/+4 |
| 2022-04-27 | Revert "Re-export core::ffi types from std::ffi" | Josh Triplett | -10/+0 |
| 2022-04-27 | Make [e]println macros eagerly drop temporaries (for backport) | David Tolnay | -6/+6 |
| 2022-04-27 | HashMap doc: Don't use monospace font for 'Entry Api' | Nixon Enraght-Moony | -1/+1 |
| 2022-04-27 | Note the importance of using sync pipes | Chris Denton | -1/+19 |
| 2022-04-27 | Add tracking issue number for mutex_unpoison | Thayne McCombs | -2/+2 |
| 2022-04-27 | Auto merge of #96195 - sunfishcode:sunfishcode/handle-or-error-type, r=joshtr... | bors | -8/+44 |
| 2022-04-26 | Windows: Make stdin pipes synchronous | Chris Denton | -31/+85 |
| 2022-04-26 | Add `set_inheritable` for Windows `Handle`s | Chris Denton | -0/+16 |
| 2022-04-26 | Add functions to un-poison Mutex and RwLock | Thayne McCombs | -0/+73 |
| 2022-04-26 | Retry deleting a directory | Chris Denton | -2/+15 |
| 2022-04-25 | Remove references to git.io | Eric Huss | -1/+2 |
| 2022-04-26 | Windows: Iterative `remove_dir_all` | Chris Denton | -77/+67 |
| 2022-04-25 | Make EncodeWide implement FusedIterator | Aron Parker | -1/+4 |
| 2022-04-25 | std: directly use pthread in UNIX parker implementation | joboet | -28/+372 |
| 2022-04-25 | Auto merge of #95246 - ChrisDenton:command-args, r=joshtriplett | bors | -91/+212 |
| 2022-04-24 | Auto merge of #94609 - esp-rs:esp-idf-stat-type-fixes, r=Mark-Simulacrum | bors | -15/+30 |
| 2022-04-23 | std: `<ExitStatus as Display>::fmt` name the signal it died from | Michael Howell | -3/+66 |
| 2022-04-23 | Use const initializer for LOCAL_PANIC_COUNT | bjorn3 | -1/+1 |
| 2022-04-23 | Auto merge of #96314 - AronParker:issue-96297-fix, r=thomcc | bors | -1/+7 |
| 2022-04-23 | Auto merge of #94887 - dylni:move-normpath-crate-impl-to-libstd, r=ChrisDenton | bors | -57/+142 |
| 2022-04-22 | Remove redundant type annotation | Aron Parker | -1/+1 |
| 2022-04-22 | Reduce allocations for path conversions on Windows | Aron Parker | -1/+7 |
| 2022-04-21 | Rollup merge of #96193 - djkoloski:fuchsia_current_exe, r=tmandry | Dylan DPC | -1/+21 |
| 2022-04-20 | Rollup merge of #96234 - goffrie:eloop, r=thomcc | Dylan DPC | -1/+2 |
| 2022-04-20 | Rollup merge of #96206 - m-ou-se:wasm-futex-locks, r=alexcrichton | Dylan DPC | -358/+24 |
| 2022-04-20 | Rollup merge of #96168 - chris-morgan:AddrParseError-description-improvements... | Dylan DPC | -11/+28 |
| 2022-04-20 | Rollup merge of #96167 - CAD97:weak-dlsym-less-ptr-crime, r=thomcc | Dylan DPC | -17/+15 |
| 2022-04-20 | remove_dir_all_recursive: treat ELOOP the same as ENOTDIR | Geoffry Song | -1/+2 |
| 2022-04-19 | Make `BorrowedFd::borrow_raw` a const fn. | Dan Gohman | -5/+5 |
| 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 |