2010-06-23 21:03:09 -07:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-08-13 15:20:11 -07:00
|
|
|
use std;
|
2011-12-13 16:25:51 -08:00
|
|
|
import comm;
|
|
|
|
import comm::chan;
|
|
|
|
import comm::send;
|
|
|
|
import comm::recv;
|
|
|
|
import task;
|
2011-08-13 15:20:11 -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);
|
|
|
|
let t = task::spawn {|| child(ch); };
|
2011-08-25 11:20:43 -07:00
|
|
|
let y = recv(p);
|
2011-12-22 14:42:52 -08:00
|
|
|
#error("received");
|
2011-12-22 17:53:53 -08:00
|
|
|
log(error, y);
|
2011-07-27 14:19:39 +02:00
|
|
|
assert (y == 10);
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2011-10-20 20:34:04 -07:00
|
|
|
fn child(c: chan<int>) {
|
2011-12-22 14:42:52 -08:00
|
|
|
#error("sending");
|
2011-08-13 15:20:11 -07:00
|
|
|
send(c, 10);
|
2011-12-22 16:13:40 -08:00
|
|
|
#error("value sent");
|
2011-08-10 09:27:22 -07:00
|
|
|
}
|