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