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::send;
|
|
|
|
import comm::chan;
|
|
|
|
import comm::recv;
|
|
|
|
import task;
|
2011-08-13 15:20:11 -07:00
|
|
|
|
2011-10-20 20:34:04 -07:00
|
|
|
fn a(c: chan<int>) {
|
2011-07-27 14:19:39 +02:00
|
|
|
if true {
|
2011-12-22 14:42:52 -08:00
|
|
|
#debug("task a");
|
|
|
|
#debug("task a");
|
|
|
|
#debug("task a");
|
|
|
|
#debug("task a");
|
|
|
|
#debug("task a");
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2011-08-13 15:20:11 -07:00
|
|
|
send(c, 10);
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
fn k(x: int) -> int { ret 15; }
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-12-22 14:42:52 -08:00
|
|
|
fn g(x: int, y: str) -> int {
|
2011-12-22 17:53:53 -08:00
|
|
|
log(debug, x);
|
|
|
|
log(debug, y);
|
2011-12-22 14:42:52 -08:00
|
|
|
let z: int = k(1);
|
|
|
|
ret z;
|
|
|
|
}
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-04-19 13:35:49 -07:00
|
|
|
fn main() {
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut n: int = 2 + 3 * 7;
|
2011-07-27 14:19:39 +02:00
|
|
|
let s: str = "hello there";
|
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
|
|
|
task::spawn(|| a(ch) );
|
|
|
|
task::spawn(|| b(ch) );
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut x: int = 10;
|
2011-07-27 14:19:39 +02:00
|
|
|
x = g(n, s);
|
2011-12-22 17:53:53 -08:00
|
|
|
log(debug, x);
|
2011-08-25 11:20:43 -07:00
|
|
|
n = recv(p);
|
|
|
|
n = recv(p);
|
2011-12-22 14:42:52 -08:00
|
|
|
#debug("children finished, root finishing");
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2011-10-20 20:34:04 -07:00
|
|
|
fn b(c: chan<int>) {
|
2011-07-27 14:19:39 +02:00
|
|
|
if true {
|
2011-12-22 14:42:52 -08:00
|
|
|
#debug("task b");
|
|
|
|
#debug("task b");
|
|
|
|
#debug("task b");
|
|
|
|
#debug("task b");
|
|
|
|
#debug("task b");
|
|
|
|
#debug("task b");
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2011-08-13 15:20:11 -07:00
|
|
|
send(c, 10);
|
2011-08-10 09:27:22 -07:00
|
|
|
}
|