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

33 lines
574 B
Rust
Raw Normal View History

2010-08-09 08:53:37 -05:00
// -*- rust -*-
use std;
import comm;
2012-01-04 23:14:53 -06:00
import comm::port;
import comm::send;
2012-08-15 16:10:46 -05:00
import comm::Chan;
import comm::chan;
import comm::recv;
import task;
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-01-04 23:14:53 -06: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);
}