31 lines
551 B
Rust
31 lines
551 B
Rust
// -*- rust -*-
|
|
|
|
extern mod std;
|
|
use comm::Chan;
|
|
use comm::Port;
|
|
use comm::send;
|
|
use comm::recv;
|
|
|
|
fn a(c: Chan<int>) { send(c, 10); }
|
|
|
|
fn main() {
|
|
let p = Port();
|
|
let ch = Chan(p);
|
|
task::spawn(|| a(ch) );
|
|
task::spawn(|| a(ch) );
|
|
let mut n: int = 0;
|
|
n = recv(p);
|
|
n = recv(p);
|
|
// debug!("Finished.");
|
|
}
|
|
|
|
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);
|
|
}
|