about summary refs log tree commit diff
path: root/src/libstd/sync
AgeCommit message (Expand)AuthorLines
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-8/+8
2015-03-24Reject specialized Drop impls.Felix S. Klock II-1/+1
2015-03-24Added `T:Send` bound to `Queue<T>` to avoid specialized `Drop` impl.Felix S. Klock II-1/+1
2015-03-24Added `T:Send` bound to `Packet<T>` to avoid specialized `Drop` impl.Felix S. Klock II-2/+2
2015-03-24added `T:Send` bound to `Mutex<T>` to avoid specialized Drop impl.Felix S. Klock II-1/+1
2015-03-24Added `T:Send` bound to `Queue<T>` to avoid specialized Drop impl.Felix S. Klock II-2/+2
2015-03-24Added `T:Send` bound to `sync::mpsc::Receiver` and `sync::mpsc::Sender`.Felix S. Klock II-16/+16
2015-03-23rollup merge of #23598: brson/gateAlex Crichton-0/+11
2015-03-23rollup merge of #23541: aturon/stab-errorAlex Crichton-6/+6
2015-03-23Add #![feature] attributes to doctestsBrian Anderson-0/+11
2015-03-23Stabilize the Error traitAaron Turon-6/+6
2015-03-21Fix documentation for std::sync::mutex: into_guard -> into_innerBarosl Lee-2/+2
2015-03-20don't use Result::ok just to be able to use unwrap/unwrap_orOliver Schneider-1/+1
2015-03-13Remove explicit syntax highlight from docs.Joseph Crail-6/+6
2015-03-11Example -> ExamplesSteve Klabnik-11/+11
2015-03-10Rollup merge of #23125 - danburkert:master, r=brsonManish Goregaokar-0/+63
2015-03-09Rename #[should_fail] to #[should_panic]Steven Fackler-3/+3
2015-03-08Remove unneeded `Send` bounds from `std::sync::mpsc`.Huon Wilson-29/+29
2015-03-08Remove unneeded `Send`/`Sync` bounds from `Mutex`/`RwLock`.Huon Wilson-5/+7
2015-03-06Implement std::error::Error for std::sync::mpsc error typesDan Burkert-0/+63
2015-03-03Add `: Box<_>` or `::Box<_>` type annotations to various places.Felix S. Klock II-6/+6
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-9/+9
2015-02-27Rollup merge of #22803 - huonw:field-stability, r=alexcrichtonManish Goregaokar-1/+1
2015-02-27Auto merge of #22573 - nwin:impl-debug-rwlock-weak, r=Manishearthbors-0/+28
2015-02-27Add some missing stability attributes on struct fields.Huon Wilson-1/+1
2015-02-26Implement `Debug` for `RwLock`, `arc::Weak` and `Mutex`nwin-0/+28
2015-02-25allow(deprecated) for TaskPool (fixup #22783)Manish Goregaokar-0/+3
2015-02-25Rollup merge of #22596 - alexcrichton:fix-some-impls, r=huonwManish Goregaokar-16/+8
2015-02-25Rollup merge of #22783 - alexcrichton:deprecate-taskpool, r=alexcrichtonManish Goregaokar-5/+5
2015-02-24std: Recomend threadpool on crates.io for TaskPoolAlex Crichton-2/+2
2015-02-24Fix integers in tests (fixup #22700)Manish Goregaokar-4/+4
2015-02-24Rollup merge of #22700 - nick29581:ints_hash, r=alexcrichtonManish Goregaokar-177/+177
2015-02-23int audit - std::syncNick Cameron-177/+177
2015-02-23Use boxed functions instead of transmuteStepan Koltsov-8/+8
2015-02-21Remove `'static` bound from sync::mpsc, Mutex and RwLock.Huon Wilson-45/+45
2015-02-20std: Tidy up some `unsafe impl`s for `sync`Alex Crichton-16/+8
2015-02-18Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.Niko Matsakis-39/+39
2015-02-17Test fixes and rebase conflictsAlex Crichton-6/+6
2015-02-17rollup merge of #22319: huonw/send-is-not-staticAlex Crichton-51/+51
2015-02-17Fallout from stabilizationAaron Turon-163/+163
2015-02-18Update the libraries to reflect Send loosing the 'static bound.Huon Wilson-51/+51
2015-02-16Deprecate std::sync::TaskPoolAaron Turon-5/+5
2015-02-15Rollup merge of #22297 - nagisa:spring-cleanup, r=alexcrichtonManish Goregaokar-8/+8
2015-02-13Remove a few uses of deprecated getenvSimonas Kazlauskas-8/+8
2015-02-13Improve documentation for `Select::new()`.Steve Klabnik-4/+11
2015-02-11rustc: Fix a number of stability lint holesAlex Crichton-17/+17
2015-02-06sync: Expose PoisonError::newKeegan McAllister-12/+14
2015-02-06sync: Add is_poisoned to Mutex and RwLockKeegan McAllister-0/+26
2015-02-06Rollup merge of #21991 - steveklabnik:gh21915, r=huonwManish Goregaokar-1/+1
2015-02-06Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichtonManish Goregaokar-2/+0