2010-08-09 08:53:37 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2012-09-05 14:32:05 -05:00
|
|
|
use comm::Chan;
|
|
|
|
use comm::Port;
|
|
|
|
use comm::send;
|
|
|
|
use comm::recv;
|
2011-08-13 17:20:11 -05:00
|
|
|
|
2012-08-15 16:10:46 -05:00
|
|
|
fn a(c: Chan<int>) { 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(|| a(ch) );
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut n: int = 0;
|
2011-08-25 13:20:43 -05:00
|
|
|
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 b3");
|
|
|
|
// debug!("task b4");
|
|
|
|
// debug!("task b5");
|
2011-08-13 17:20:11 -05:00
|
|
|
send(c, 10);
|
2011-08-10 11:27:22 -05:00
|
|
|
}
|