2010-08-09 06:53:37 -07:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-08-13 15:20:11 -07:00
|
|
|
use std;
|
2011-12-13 16:25:51 -08:00
|
|
|
import comm::chan;
|
|
|
|
import comm::port;
|
|
|
|
import comm::send;
|
|
|
|
import comm::recv;
|
|
|
|
import task;
|
2011-08-13 15:20:11 -07:00
|
|
|
|
2011-10-20 20:34:04 -07:00
|
|
|
fn a(c: chan<int>) { send(c, 10); }
|
2010-08-09 06:53:37 -07:00
|
|
|
|
2011-04-19 13:35:49 -07:00
|
|
|
fn main() {
|
2011-08-25 11:20:43 -07:00
|
|
|
let p = port();
|
2012-01-04 21:14:53 -08:00
|
|
|
let ch = chan(p);
|
|
|
|
task::spawn {|| a(ch); };
|
|
|
|
task::spawn {|| a(ch); };
|
2011-07-27 14:19:39 +02:00
|
|
|
let n: int = 0;
|
2011-08-25 11:20:43 -07:00
|
|
|
n = recv(p);
|
|
|
|
n = recv(p);
|
2011-12-22 14:42:52 -08:00
|
|
|
// #debug("Finished.");
|
2010-08-09 06:53:37 -07:00
|
|
|
}
|
|
|
|
|
2011-08-25 11:20:43 -07:00
|
|
|
fn b(c: chan<int>) {
|
2011-12-22 14:42:52 -08:00
|
|
|
// #debug("task b0");
|
|
|
|
// #debug("task b1");
|
|
|
|
// #debug("task b2");
|
|
|
|
// #debug("task b3");
|
|
|
|
// #debug("task b4");
|
|
|
|
// #debug("task b5");
|
2011-08-13 15:20:11 -07:00
|
|
|
send(c, 10);
|
2011-08-10 09:27:22 -07:00
|
|
|
}
|