2011-03-25 12:19:20 -07:00
|
|
|
// xfail-stage0
|
2010-06-23 21:03:09 -07:00
|
|
|
obj worker(chan[int] c) {
|
|
|
|
drop {
|
|
|
|
log "in dtor";
|
|
|
|
c <| 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-02 11:11:58 -07:00
|
|
|
impure fn do_work(chan[int] c) {
|
2010-06-23 21:03:09 -07:00
|
|
|
log "in child task";
|
|
|
|
{
|
|
|
|
let worker w = worker(c);
|
|
|
|
log "constructed worker";
|
|
|
|
}
|
|
|
|
log "destructed worker";
|
|
|
|
while(true) {
|
|
|
|
// Deadlock-condition not handled properly yet, need to avoid
|
|
|
|
// exiting the child early.
|
|
|
|
c <| 11;
|
|
|
|
yield;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-02 11:11:58 -07:00
|
|
|
impure fn main() {
|
2010-06-23 21:03:09 -07:00
|
|
|
let port[int] p = port();
|
|
|
|
log "spawning worker";
|
|
|
|
auto w = spawn do_work(chan(p));
|
|
|
|
let int i;
|
|
|
|
log "parent waiting for shutdown";
|
|
|
|
i <- p;
|
|
|
|
log "received int";
|
|
|
|
check (i == 10);
|
|
|
|
log "int is OK, child-dtor ran as expected";
|
|
|
|
}
|