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

32 lines
569 B
Rust
Raw Normal View History

2010-08-09 06:53:37 -07:00
// -*- rust -*-
use std;
import comm::chan;
import comm::port;
import comm::send;
import comm::recv;
import task;
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() {
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;
n = recv(p);
n = recv(p);
// #debug("Finished.");
2010-08-09 06:53:37 -07:00
}
fn b(c: chan<int>) {
// #debug("task b0");
// #debug("task b1");
// #debug("task b2");
// #debug("task b3");
// #debug("task b4");
// #debug("task b5");
send(c, 10);
}