about summary refs log tree commit diff
path: root/src/libstd/sync/mpsc
AgeCommit message (Expand)AuthorLines
2015-04-24Implement IntoIterator for ReceiverRaphael Speyer-0/+57
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-3/+3
2015-04-09Indicate keyword in doc comment is code-likeCorey Farwell-2/+2
2015-04-07Remove another invalid exampleŁukasz Niemier-26/+0
2015-04-07Remove incorrect example from docsŁukasz Niemier-26/+0
2015-04-01Test fixes and rebase conflicts, round 2Alex Crichton-21/+21
2015-04-01rollup merge of #23176: huonw/rm-boundsAlex Crichton-29/+29
2015-03-31Indicate select! is code-likeCorey Farwell-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-5/+5
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 `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/+4
2015-03-23rollup merge of #23541: aturon/stab-errorAlex Crichton-2/+2
2015-03-23Add #![feature] attributes to doctestsBrian Anderson-0/+4
2015-03-23Stabilize the Error traitAaron Turon-2/+2
2015-03-20don't use Result::ok just to be able to use unwrap/unwrap_orOliver Schneider-1/+1
2015-03-11Example -> ExamplesSteve Klabnik-4/+4
2015-03-08Remove unneeded `Send` bounds from `std::sync::mpsc`.Huon Wilson-29/+29
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