summary refs log tree commit diff
path: root/src/test/run-pass/basic-1.rs
blob: 4b912938e4abb182b8ceda745a180f97d77de9db (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
30
31
// -*- rust -*-

use std;
import comm::chan;
import comm::port;
import comm::send;
import comm::recv;
import task;

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);
}