| Age | Commit message (Expand) | Author | Lines |
| 2024-04-22 | remove an unused type from the reentrant lock tests | Ralf Jung | -8/+1 |
| 2024-04-06 | Rollup merge of #114788 - tisonkun:get_mut_or_init, r=dtolnay | Matthias Krüger | -0/+81 |
| 2024-03-27 | impl get_mut_or_init and get_mut_or_try_init for OnceCell and OnceLock | tison | -0/+81 |
| 2024-03-26 | Update `RwLock` deadlock example to not use shadowing | Trevor Gross | -6/+7 |
| 2024-03-22 | docs(sync): normalize dot in fn summaries | MultisampledNight | -2/+2 |
| 2024-03-20 | Rollup merge of #122729 - m-ou-se:relax, r=Amanieu | Jacob Pratt | -2/+2 |
| 2024-03-20 | SeqCst->Relaxed in condvar test. | Mara Bos | -2/+2 |
| 2024-03-19 | branch 1.78: replace-version-placeholder | Mark Rousskov | -1/+1 |
| 2024-03-13 | Rollup merge of #122386 - joboet:move_pal_once, r=jhpratt | Matthias Krüger | -5/+5 |
| 2024-03-12 | std: move `Once` implementations to `sys` | joboet | -5/+5 |
| 2024-03-12 | Use `min_exhaustive_patterns` in core & std | Nadrieril | -0/+8 |
| 2024-03-01 | Rollup merge of #121736 - HTGAzureX1212:HTGAzureX1212/remove-mutex-unlock, r=... | Matthias Krüger | -20/+0 |
| 2024-02-29 | fix typos | Ibraheem Ahmed | -3/+3 |
| 2024-02-29 | document potential memory leak in unbounded channel | Ibraheem Ahmed | -0/+3 |
| 2024-02-29 | Rollup merge of #110543 - joboet:reentrant_lock, r=m-ou-se | Matthias Krüger | -197/+340 |
| 2024-02-28 | remove Mutex::unlock | HTGAzureX1212. | -20/+0 |
| 2024-02-26 | fix race between block initialization and receiver disconnection | Ibraheem Ahmed | -2/+2 |
| 2024-02-25 | Auto merge of #117107 - zachs18:mapped-mutex-guard, r=Amanieu | bors | -4/+985 |
| 2024-02-24 | library: use `addr_of!` | Pavel Grigorenko | -2/+6 |
| 2024-02-23 | Apply suggestions from code review | zachs18 | -3/+3 |
| 2024-02-23 | Auto merge of #119536 - Jules-Bertholet:const-barrier, r=dtolnay | bors | -1/+3 |
| 2024-02-23 | std: make `ReentrantLock` public | joboet | -197/+340 |
| 2024-02-14 | Auto merge of #121078 - oli-obk:rollup-p11zsav, r=oli-obk | bors | -1/+1 |
| 2024-02-14 | Auto merge of #100603 - tmandry:zst-guards, r=dtolnay | bors | -2/+49 |
| 2024-02-14 | Fix typos in `OneLock` doc | Igor | -1/+1 |
| 2024-02-08 | Bump version placeholders | Mark Rousskov | -2/+2 |
| 2024-01-14 | std: Doc blocking behavior of LazyLock methods | Behnam Esfahbod | -6/+15 |
| 2024-01-10 | Stabilize mutex_unpoison feature | Thayne McCombs | -6/+2 |
| 2024-01-02 | Make `Barrier::new()` const | Jules Bertholet | -1/+3 |
| 2023-12-10 | Auto merge of #118692 - surechen:remove_unused_imports, r=petrochenkov | bors | -2/+0 |
| 2023-12-10 | remove redundant imports | surechen | -2/+0 |
| 2023-12-10 | Fix typo in `std::sync::Mutex` example | naglis | -1/+1 |
| 2023-12-08 | OnceLock: Rework example, statics aren't dropped | Ian Rees | -14/+25 |
| 2023-12-05 | fmt | Zachary S | -4/+1 |
| 2023-12-05 | Specify behavior if the closure passed to *Guard::*map panics. | Zachary S | -69/+364 |
| 2023-12-05 | fix MappedMutexGuard::(try_)map doc typo. | Zachary S | -2/+2 |
| 2023-12-05 | Add MappedMutexGuard and MappedRwLock*Guard tests. | Zachary S | -2/+133 |
| 2023-12-05 | Fix Condvar typo, add public re-exports of Mapped*Guard. | Zachary S | -2/+6 |
| 2023-12-05 | Add comment about `Mapped(Mutex|RwLockWrite)Guard` variance. | Zachary S | -35/+43 |
| 2023-12-05 | Implmement `MappedRwLock(Read|Write)Guard`. | Zachary S | -3/+355 |
| 2023-12-05 | Implement `MappedMutexGuard`. | Zachary S | -0/+193 |
| 2023-12-05 | Allow cloning `poison::Guard`s. | Zachary S | -0/+1 |
| 2023-11-25 | Update `OnceLock` documentation to give a concrete 'lazy static' example, and... | Corey Farwell | -9/+41 |
| 2023-10-24 | Add T: ?Sized to RwLock*Guards' Debug impls. | Zachary S | -2/+2 |
| 2023-10-13 | Implement `OnceCell/Lock::try_insert()` | daxpedda | -3/+40 |
| 2023-10-06 | Minor doc clarification in Once::call_once | Peter Hall | -1/+1 |
| 2023-09-19 | Replace 'mutex' with 'lock' in RwLock documentation | Kriskras99 | -2/+2 |
| 2023-08-18 | Remove Drop impl of mpsc Receiver and (Sync)Sender | Ben Schulz | -15/+0 |
| 2023-08-12 | Update Sender documentation for Sync | Gurinder Singh | -3/+2 |
| 2023-08-01 | [library/std] Replace condv while loop with `cvar.wait_while`. | Taras Tsugrii | -5/+2 |