rust/src/test/run-pass/basic-1.rs

31 lines
545 B
Rust
Raw Normal View History

2010-08-09 08:53:37 -05:00
// -*- rust -*-
use std;
import std::comm::chan;
import std::comm::port;
import std::comm::send;
import std::comm::recv;
import std::task;
fn# a(c: chan<int>) { send(c, 10); }
2010-08-09 08:53:37 -05:00
2011-04-19 15:35:49 -05:00
fn main() {
let p = port();
task::spawn2(chan(p), a);
task::spawn2(chan(p), a);
2011-07-27 07:19:39 -05:00
let n: int = 0;
n = recv(p);
n = recv(p);
2011-07-27 07:19:39 -05:00
// log "Finished.";
2010-08-09 08:53:37 -05:00
}
fn b(c: chan<int>) {
2011-07-27 07:19:39 -05:00
// log "task b0";
// log "task b1";
// log "task b2";
// log "task b3";
// log "task b4";
// log "task b5";
send(c, 10);
}