2010-08-09 08:53:37 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-08-13 17:20:11 -05:00
|
|
|
use std;
|
|
|
|
import std::comm;
|
|
|
|
import std::comm::send;
|
|
|
|
import std::comm::_chan;
|
|
|
|
import std::task;
|
|
|
|
|
2011-08-10 11:27:22 -05:00
|
|
|
fn a(c: _chan<int>) { log "task a0"; log "task a1"; send(c, 10); }
|
2010-08-09 08:53:37 -05:00
|
|
|
|
2011-04-19 15:35:49 -05:00
|
|
|
fn main() {
|
2011-08-13 17:20:11 -05:00
|
|
|
let p = comm::mk_port();
|
|
|
|
task::_spawn(bind a(p.mk_chan()));
|
|
|
|
task::_spawn(bind b(p.mk_chan()));
|
2011-07-27 07:19:39 -05:00
|
|
|
let n: int = 0;
|
2011-08-13 17:20:11 -05:00
|
|
|
n = p.recv();
|
|
|
|
n = p.recv();
|
2010-08-09 08:53:37 -05:00
|
|
|
log "Finished.";
|
|
|
|
}
|
|
|
|
|
2011-08-10 11:27:22 -05:00
|
|
|
fn b(c: _chan<int>) {
|
2010-08-09 08:53:37 -05:00
|
|
|
log "task b0";
|
|
|
|
log "task b1";
|
|
|
|
log "task b2";
|
|
|
|
log "task b2";
|
|
|
|
log "task b3";
|
2011-08-13 17:20:11 -05:00
|
|
|
send(c, 10);
|
2011-08-10 11:27:22 -05:00
|
|
|
}
|