blob: 22f0e6c3a49b03aa93d21e3bd38ada5da4d44207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// run-pass
#![allow(unused_must_use)]
// ignore-emscripten no threads support
#![feature(box_syntax)]
use std::sync::mpsc::{channel, Sender};
use std::thread;
fn child(tx: &Sender<Box<usize>>, i: usize) {
tx.send(box i).unwrap();
}
pub fn main() {
let (tx, rx) = channel();
let n = 100;
let mut expected = 0;
let ts = (0..n).map(|i| {
expected += i;
let tx = tx.clone();
thread::spawn(move|| {
child(&tx, i)
})
}).collect::<Vec<_>>();
let mut actual = 0;
for _ in 0..n {
let j = rx.recv().unwrap();
actual += *j;
}
assert_eq!(expected, actual);
for t in ts { t.join(); }
}
|