2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(unused_must_use)]
|
2016-02-11 11:34:41 +00:00
|
|
|
// ignore-emscripten no threads support
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2014-12-23 19:53:35 +00:00
|
|
|
use std::sync::mpsc::{channel, Sender};
|
2015-02-17 23:10:25 +00:00
|
|
|
use std::thread;
|
2011-09-23 22:32:31 +00:00
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
fn child(tx: &Sender<Box<usize>>, i: usize) {
|
2021-08-25 00:39:40 +00:00
|
|
|
tx.send(Box::new(i)).unwrap();
|
2011-09-23 22:32:31 +00:00
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2014-03-09 21:58:32 +00:00
|
|
|
let (tx, rx) = channel();
|
2015-03-03 08:42:26 +00:00
|
|
|
let n = 100;
|
|
|
|
let mut expected = 0;
|
2015-04-13 22:15:32 +00:00
|
|
|
let ts = (0..n).map(|i| {
|
2015-01-07 17:22:06 +00:00
|
|
|
expected += i;
|
2014-03-09 21:58:32 +00:00
|
|
|
let tx = tx.clone();
|
2015-04-13 22:15:32 +00:00
|
|
|
thread::spawn(move|| {
|
2014-03-09 21:58:32 +00:00
|
|
|
child(&tx, i)
|
2015-01-07 17:22:06 +00:00
|
|
|
})
|
|
|
|
}).collect::<Vec<_>>();
|
2011-09-23 22:32:31 +00:00
|
|
|
|
2015-03-03 08:42:26 +00:00
|
|
|
let mut actual = 0;
|
|
|
|
for _ in 0..n {
|
2014-12-23 19:53:35 +00:00
|
|
|
let j = rx.recv().unwrap();
|
2011-09-23 22:32:31 +00:00
|
|
|
actual += *j;
|
2011-10-21 12:12:12 +00:00
|
|
|
}
|
2011-09-23 22:32:31 +00:00
|
|
|
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(expected, actual);
|
2015-04-13 22:15:32 +00:00
|
|
|
|
|
|
|
for t in ts { t.join(); }
|
2013-02-14 19:47:00 +00:00
|
|
|
}
|