about summary refs log tree commit diff
path: root/src/libstd/sync
AgeCommit message (Expand)AuthorLines
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-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
2015-02-06Rollup merge of #21954 - jbcrail:fix-misspelled-comments, r=steveklabnikManish Goregaokar-1/+1
2015-02-05Mention the queueueue-ness of mpsc.Steve Klabnik-1/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-1/+1
2015-02-04Fix for misspelled comments.Joseph Crail-1/+1
2015-02-04remove all kind annotations from closuresJorge Aparicio-3/+3
2015-02-04Auto merge of #21892 - huonw:deprecate-rand, r=alexcrichtonbors-0/+2
2015-02-03Switch missing_copy_implementations to default-allowSteven Fackler-2/+0
2015-02-04Deprecate in-tree `rand`, `std::rand` and `#[derive(Rand)]`.Huon Wilson-0/+2
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-50/+50
2015-01-30std: Stabilize the std::fmt moduleAlex Crichton-3/+3
2015-01-30Remove all `i` suffixesTobias Bucher-50/+50
2015-01-29s/Show/Debug/gJorge Aparicio-3/+3
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-10/+10
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-64/+64
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1
2015-01-27Merge remote-tracking branch 'rust-lang/master'Brian Anderson-2/+2