2011-08-06 10:07:39 -07:00
|
|
|
use std;
|
2011-12-13 16:25:51 -08:00
|
|
|
import comm;
|
|
|
|
import task;
|
2011-07-12 15:27:17 -07:00
|
|
|
|
2011-10-20 20:34:04 -07:00
|
|
|
fn start(c: comm::chan<comm::chan<int>>) {
|
2011-08-25 11:20:43 -07:00
|
|
|
let p: comm::port<int> = comm::port();
|
|
|
|
comm::send(c, comm::chan(p));
|
2011-08-06 10:07:39 -07:00
|
|
|
}
|
2010-08-11 15:05:33 -07:00
|
|
|
|
2011-04-19 13:35:49 -07:00
|
|
|
fn main() {
|
2011-08-25 11:20:43 -07:00
|
|
|
let p = comm::port();
|
2012-01-04 21:14:53 -08:00
|
|
|
let ch = comm::chan(p);
|
2012-06-30 16:19:07 -07:00
|
|
|
let child = task::spawn(|| start(ch) );
|
2011-08-25 11:20:43 -07:00
|
|
|
let c = comm::recv(p);
|
2011-08-06 10:07:39 -07:00
|
|
|
}
|