25 lines
398 B
Rust
25 lines
398 B
Rust
// -*- rust -*-
|
|
|
|
extern mod std;
|
|
use comm::*;
|
|
|
|
fn main() {
|
|
let p = Port();
|
|
let ch = Chan(p);
|
|
let mut y: int;
|
|
|
|
task::spawn(|| child(ch) );
|
|
y = recv(p);
|
|
debug!("received 1");
|
|
log(debug, y);
|
|
assert (y == 10);
|
|
|
|
task::spawn(|| child(ch) );
|
|
y = recv(p);
|
|
debug!("received 2");
|
|
log(debug, y);
|
|
assert (y == 10);
|
|
}
|
|
|
|
fn child(c: Chan<int>) { send(c, 10); }
|