2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(unused_must_use)]
|
2016-02-11 12:34:41 +01:00
|
|
|
// ignore-emscripten no threads support
|
|
|
|
|
2015-03-30 11:00:05 -07:00
|
|
|
use std::thread;
|
2014-12-23 11:53:35 -08:00
|
|
|
use std::sync::mpsc::{channel, Sender};
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() { test00(); }
|
2010-07-28 16:58:17 -07:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn test00_start(c: &Sender<isize>, number_of_messages: isize) {
|
|
|
|
let mut i: isize = 0;
|
2014-12-23 11:53:35 -08:00
|
|
|
while i < number_of_messages { c.send(i + 0).unwrap(); i += 1; }
|
2010-07-28 16:58:17 -07:00
|
|
|
}
|
|
|
|
|
2011-04-19 13:35:49 -07:00
|
|
|
fn test00() {
|
2015-03-25 17:06:52 -07:00
|
|
|
let r: isize = 0;
|
|
|
|
let mut sum: isize = 0;
|
2014-03-09 14:58:32 -07:00
|
|
|
let (tx, rx) = channel();
|
2015-03-25 17:06:52 -07:00
|
|
|
let number_of_messages: isize = 10;
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2015-04-13 15:15:32 -07:00
|
|
|
let result = thread::spawn(move|| {
|
2014-03-09 14:58:32 -07:00
|
|
|
test00_start(&tx, number_of_messages);
|
2014-01-27 18:29:50 -05:00
|
|
|
});
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
let mut i: isize = 0;
|
2011-12-22 14:42:52 -08:00
|
|
|
while i < number_of_messages {
|
2014-12-23 11:53:35 -08:00
|
|
|
sum += rx.recv().unwrap();
|
2014-10-14 21:07:11 -04:00
|
|
|
println!("{}", r);
|
2011-12-22 14:42:52 -08:00
|
|
|
i += 1;
|
|
|
|
}
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2014-12-14 00:05:32 -08:00
|
|
|
result.join();
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(sum, number_of_messages * (number_of_messages - 1) / 2);
|
2011-08-12 17:36:52 -07:00
|
|
|
}
|