about summary refs log tree commit diff
path: root/library/std/src/sync/mutex.rs
AgeCommit message (Expand)AuthorLines
2023-03-20Apply suggestions from code reviewthe8472-3/+3
2023-03-20Add block-based mutex unlocking exampleThe 8472-7/+17
2022-11-06std: remove lock wrappers in `sys_common`joboet-10/+6
2022-09-02Rollup merge of #97739 - a2aaron:let_underscore, r=estebankGuillaume Gomez-0/+1
2022-06-19Auto merge of #97791 - m-ou-se:const-locks, r=m-ou-sebors-1/+3
2022-06-09Avoid `thread::panicking()` in non-poisoning methods of `Mutex` and `RwLock`Josh Stone-3/+3
2022-06-07Update library/std/src/sync/mutex.rsDylan DPC-1/+1
2022-06-07Remove confusing sentence from `Mutex` docsNilstrieb-5/+4
2022-06-06Make {Mutex, Condvar, RwLock}::new() const.Mara Bos-0/+1
2022-06-06Make all {Mutex, Condvar, RwLock}::new #[inline].Mara Bos-1/+2
2022-06-05Add diagnostic items to MutexGuard and RwLock GuardsAaron Kofsky-0/+1
2022-05-20Auto merge of #96422 - tmccombs:mutex-unpoison, r=m-ou-sebors-0/+39
2022-05-20Remove references to guards in documentation for clear_poisonThayne McCombs-5/+5
2022-05-19Change clear_poison to take the lock instead of a guardThayne McCombs-4/+9
2022-05-06Mark locks in std lib with clippy::has_significant_dropPreston From-0/+1
2022-04-27Add tracking issue number for mutex_unpoisonThayne McCombs-1/+1
2022-04-26Add functions to un-poison Mutex and RwLockThayne McCombs-0/+34
2022-01-28update cfg(bootstrap)sPietro Albini-5/+2
2021-10-03Practice diagnostic message conventionHirochika Matsumoto-1/+1
2021-10-02Make diangostic item names consistentCameron Steffen-1/+1
2021-09-28ref/refmutGus Wynn-1/+1
2021-09-27lock typesGus Wynn-0/+6
2021-07-01Move Mutex::unlock to T: ?SizedMark Mansi-20/+20
2021-05-24minor rewording after reviewTaylor Yu-2/+2
2021-05-20doc: clarify Mutex::try_lock, etc. errorsTaylor Yu-2/+8
2021-04-28Simplify `Mutex::into_inner`BenoƮt du Garreau-19/+2
2021-04-22Move `sys_common::poison` to `sync::poison`Christiaan Dirkx-1/+1
2021-03-27Improve Debug implementations of Mutex and RwLock.Mara Bos-4/+8
2021-02-18add Mutex::unlockmark-0/+20
2020-10-07(docs): make mutex error comment consistent with codebaseSteve Manuel-1/+1
2020-09-27Split sys_common::Mutex in StaticMutex and MovableMutex.Mara Bos-26/+4
2020-09-20Replace unneeded `unsafe` calls to `.get()` with calls to `.get_mut()`Daniel Henry-Mantilla-3/+1
2020-09-06Auto merge of #76128 - poliorcetics:doc-use-arc-clone, r=KodrAusbors-4/+4
2020-08-31std: move "mod tests/benches" to separate filesLzu Tao-242/+3
2020-08-30Move to Arc::clone(&x) over x.clone() in library/stdAlexis Bourget-4/+4
2020-08-22Use intra-doc-links in `std::sync::*`LeSeulArtichaut-16/+8
2020-07-27mv std libs to library/mark-0/+767