summary refs log tree commit diff
path: root/src/test/run-pass/basic-2.rs
blob: 7a81bfc3fc5293c71222c2e3bbd55847b18a92fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// -*- rust -*-

extern mod std;
use comm::Port;
use comm::send;
use comm::Chan;
use comm::recv;

fn a(c: Chan<int>) { debug!("task a0"); debug!("task a1"); send(c, 10); }

fn main() {
    let p = Port();
    let ch = Chan(&p);
    task::spawn(|| a(ch) );
    task::spawn(|| b(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 b2");
    debug!("task b3");
    send(c, 10);
}