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

32 lines
555 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;
import comm::chan;
import comm::recv;
import task;
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);
task::spawn {|| a(ch); };
task::spawn {|| b(ch); };
2011-07-27 07:19:39 -05:00
let n: int = 0;
n = recv(p);
n = recv(p);
#debug("Finished.");
2010-08-09 08:53:37 -05:00
}
2011-10-20 22:34:04 -05:00
fn b(c: chan<int>) {
#debug("task b0");
#debug("task b1");
#debug("task b2");
#debug("task b2");
#debug("task b3");
send(c, 10);
}