rust/src/test/run-pass/task-comm-13.rs

18 lines
417 B
Rust
Raw Normal View History

use std;
import std::task;
import std::comm;
2011-08-12 17:36:52 -07:00
import std::comm::send;
fn start(c: comm::chan<int>, start: int, number_of_messages: int) {
2011-07-27 14:19:39 +02:00
let i: int = 0;
2011-08-12 17:36:52 -07:00
while i < number_of_messages { send(c, start + i); i += 1; }
}
2011-07-27 14:19:39 +02:00
fn main() {
log "Check that we don't deadlock.";
let p = comm::port();
let a = task::spawn_joinable(bind start(comm::chan(p), 0, 10));
task::join(a);
log "Joined task";
2011-08-12 17:36:52 -07:00
}