| Age | Commit message (Expand) | Author | Lines |
| 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 | Improve Windows path prefix parsing | dylni | -29/+115 |
| 2022-04-16 | Use a single ReentrantMutex implementation on all platforms. | Mara Bos | -527/+5 |
| 2022-04-15 | Rollup merge of #96040 - m-ou-se:futex-u32, r=Amanieu | Dylan DPC | -47/+49 |
| 2022-04-15 | Auto merge of #94079 - petrochenkov:cstr, r=joshtriplett | bors | -40/+0 |
| 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 | Use u32 instead of i32 for futexes. | Mara Bos | -47/+49 |
| 2022-04-12 | Allow cvt_nz to be unused on some platforms. | 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 | -1/+9 |
| 2022-04-12 | Add futex-based ReentrantMutex on Linux. | Mara Bos | -6/+88 |
| 2022-04-11 | Rollup merge of #95801 - m-ou-se:futex-rwlock, r=Amanieu | Dylan DPC | -8/+329 |
| 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 |
| 2022-04-11 | Add doc comments to futex operations. | Mara Bos | -0/+10 |
| 2022-04-11 | kmc-solid: Use `abort` to abort a program | Tomoaki Kawada | -45/+5 |
| 2022-04-09 | Rollup merge of #95802 - RalfJung:unused-win, r=Dylan-DPC | Dylan DPC | -0/+1 |
| 2022-04-08 | Fix typo in futex rwlock. | Mara Bos | -1/+1 |
| 2022-04-08 | fix some unused constant warning on some Windows targets | Ralf Jung | -0/+1 |
| 2022-04-08 | Add futex-based RwLock on Linux. | Mara Bos | -2/+295 |
| 2022-04-08 | Auto merge of #95798 - Dylan-DPC:rollup-51hx1wl, r=Dylan-DPC | bors | -2/+5 |
| 2022-04-08 | Windows: Use a pipe relay for chaining pipes | Chris Denton | -1/+50 |
| 2022-04-08 | Auto merge of #95775 - RalfJung:miri-windows-compat, r=ChrisDenton | bors | -8/+17 |
| 2022-04-07 | Windows: Increase a pipe's buffer capacity to 64kb | Chris Denton | -2/+5 |
| 2022-04-07 | do not round-trip function pointer through integer | Ralf Jung | -5/+4 |
| 2022-04-07 | make windows compat_fn (crudely) work on Miri | Ralf Jung | -4/+14 |
| 2022-04-07 | Return status from futex_wake(). | Mara Bos | -6/+4 |
| 2022-04-07 | Auto merge of #95688 - pfmooney:libc-update, r=Mark-Simulacrum | bors | -17/+1 |
| 2022-04-07 | Rollup merge of #95626 - saethlin:pass-pointer-to-prctl, r=cuviper | Dylan DPC | -1/+7 |
| 2022-04-06 | Change trailing prctl arguments to c_ulong | Ben Kimock | -1/+7 |
| 2022-04-06 | Rename RWLock to RwLock in std::sys. | Mara Bos | -66/+66 |
| 2022-04-06 | Auto merge of #95469 - ChrisDenton:unsound-read-write, r=joshtriplett | bors | -78/+149 |
| 2022-04-05 | Auto merge of #95702 - Dylan-DPC:rollup-793rz6v, r=Dylan-DPC | bors | -0/+11 |
| 2022-04-05 | Rollup merge of #88025 - devnexen:netbsd_scm_creds, r=Amanieu | Dylan DPC | -0/+11 |
| 2022-04-05 | Auto merge of #95035 - m-ou-se:futex-locks-on-linux, r=Amanieu | bors | -40/+250 |
| 2022-04-05 | Update libc to 0.2.121 | Patrick Mooney | -17/+1 |
| 2022-04-05 | Reword comment in futex condvar implementation. | Mara Bos | -1/+1 |
| 2022-04-05 | Mark unix::locks::futex::Mutex::new as #[inline]. | Mara Bos | -0/+1 |
| 2022-04-05 | Use rtabort | Chris Denton | -2/+1 |
| 2022-04-05 | Make `synchronous_write` safe to call | Chris Denton | -23/+18 |
| 2022-04-05 | Complete reads and writes synchronously or abort | Chris Denton | -66/+137 |
| 2022-04-05 | Correct definition of `IO_STATUS_BLOCK` | Chris Denton | -5/+11 |
| 2022-04-04 | Rollup merge of #95467 - ChrisDenton:async-read-pipe, r=joshtriplett | Dylan DPC | -2/+140 |
| 2022-04-04 | Correct calling convention | Chris Denton | -2/+2 |
| 2022-04-04 | Update library/std/src/sys/windows/pipe.rs | Chris Denton | -4/+6 |