2010-06-23 21:03:09 -07:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-08-13 15:20:11 -07:00
|
|
|
use std;
|
|
|
|
import std::comm;
|
|
|
|
import std::comm::send;
|
2011-08-25 11:20:43 -07:00
|
|
|
import std::comm::chan;
|
|
|
|
import std::comm::recv;
|
2011-08-13 15:20:11 -07:00
|
|
|
import std::task;
|
|
|
|
|
2011-08-25 11:20:43 -07:00
|
|
|
fn a(c: chan<int>) {
|
2011-07-27 14:19:39 +02:00
|
|
|
if true {
|
|
|
|
log "task a";
|
|
|
|
log "task a";
|
|
|
|
log "task a";
|
|
|
|
log "task a";
|
|
|
|
log "task a";
|
|
|
|
}
|
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-07-27 14:19:39 +02:00
|
|
|
fn g(x: int, y: str) -> int { log x; log y; 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() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let n: int = 2 + 3 * 7;
|
|
|
|
let s: str = "hello there";
|
2011-08-25 11:20:43 -07:00
|
|
|
let p = comm::port();
|
|
|
|
task::spawn(bind a(chan(p)));
|
|
|
|
task::spawn(bind b(chan(p)));
|
2011-07-27 14:19:39 +02:00
|
|
|
let x: int = 10;
|
|
|
|
x = g(n, s);
|
2010-06-23 21:03:09 -07:00
|
|
|
log x;
|
2011-08-25 11:20:43 -07:00
|
|
|
n = recv(p);
|
|
|
|
n = recv(p);
|
2010-06-23 21:03:09 -07:00
|
|
|
// FIXME: use signal-channel for this.
|
|
|
|
log "children finished, root finishing";
|
|
|
|
}
|
|
|
|
|
2011-08-25 11:20:43 -07:00
|
|
|
fn b(c: chan<int>) {
|
2011-07-27 14:19:39 +02:00
|
|
|
if true {
|
|
|
|
log "task b";
|
|
|
|
log "task b";
|
|
|
|
log "task b";
|
|
|
|
log "task b";
|
|
|
|
log "task b";
|
|
|
|
log "task b";
|
|
|
|
}
|
2011-08-13 15:20:11 -07:00
|
|
|
send(c, 10);
|
2011-08-10 09:27:22 -07:00
|
|
|
}
|