about summary refs log tree commit diff
path: root/src/libstd/sync/mpsc
AgeCommit message (Expand)AuthorLines
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-5/+5
2015-02-27Add some missing stability attributes on struct fields.Huon Wilson-1/+1
2015-02-24Fix integers in tests (fixup #22700)Manish Goregaokar-1/+1
2015-02-24Rollup merge of #22700 - nick29581:ints_hash, r=alexcrichtonManish Goregaokar-161/+161
2015-02-23int audit - std::syncNick Cameron-161/+161
2015-02-23Use boxed functions instead of transmuteStepan Koltsov-8/+8
2015-02-21Remove `'static` bound from sync::mpsc, Mutex and RwLock.Huon Wilson-38/+38
2015-02-18Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.Niko Matsakis-22/+22
2015-02-17rollup merge of #22319: huonw/send-is-not-staticAlex Crichton-38/+38
2015-02-17Fallout from stabilizationAaron Turon-111/+111
2015-02-18Update the libraries to reflect Send loosing the 'static bound.Huon Wilson-38/+38
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-13/+13
2015-02-06Rollup merge of #21991 - steveklabnik:gh21915, r=huonwManish Goregaokar-1/+1
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-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-37/+37
2015-01-30std: Stabilize the std::fmt moduleAlex Crichton-3/+3
2015-01-30Remove all `i` suffixesTobias Bucher-37/+37
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-42/+42
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
2015-01-26Fallout of io => old_ioAlex Crichton-2/+2
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-2/+19
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-133/+46
2015-01-23grandfathered -> rust1Brian Anderson-29/+29
2015-01-23std: Relax Result::unwrap() to DebugAlex Crichton-2/+19
2015-01-23Set unstable feature names appropriatelyBrian Anderson-3/+3
2015-01-21Remove 'since' from unstable attributesBrian Anderson-3/+3
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-37/+38
2015-01-21Test fixes and rebase conflictsAlex Crichton-2/+0
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-8/+12
2015-01-21rollup merge of #21444: petrochenkov/nullAlex Crichton-18/+21
2015-01-21rollup merge of #21438: taralx/kill-racycellAlex Crichton-33/+15
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-8/+12
2015-01-20Register snapshot for 9006c3cFlavio Percoco-74/+0
2015-01-20Kill RacyCell in favor of marking SyncSender explicitly Send.JP Sugarbroad-34/+17
2015-01-19Replace `0 as *const/mut T` with `ptr::null/null_mut()`we-19/+23
2015-01-16Don't use NoSend/NoSync in libstdFlavio Percoco-0/+75
2015-01-11Rename AtomicInt and AtomicUintSteven Fackler-25/+25
2015-01-08Improvements to feature stagingBrian Anderson-3/+3
2015-01-07fix the `&mut _` patternsJorge Aparicio-3/+3