rust/src/test/run-pass/basic-2.rs

30 lines
524 B
Rust
Raw Normal View History

2010-08-09 08:53:37 -05:00
// -*- rust -*-
extern mod std;
2012-09-05 14:32:05 -05:00
use comm::Port;
use comm::send;
use comm::Chan;
use comm::recv;
2012-08-22 19:24:52 -05:00
fn a(c: Chan<int>) { debug!("task a0"); debug!("task a1"); send(c, 10); }
2010-08-09 08:53:37 -05:00
2011-04-19 15:35:49 -05:00
fn main() {
2012-08-27 16:22:25 -05:00
let p = Port();
let ch = Chan(p);
2012-06-30 18:19:07 -05:00
task::spawn(|| a(ch) );
task::spawn(|| b(ch) );
let mut n: int = 0;
n = recv(p);
n = recv(p);
2012-08-22 19:24:52 -05:00
debug!("Finished.");
2010-08-09 08:53:37 -05:00
}
2012-08-15 16:10:46 -05:00
fn b(c: Chan<int>) {
2012-08-22 19:24:52 -05:00
debug!("task b0");
debug!("task b1");
debug!("task b2");
debug!("task b2");
debug!("task b3");
send(c, 10);
}