]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/preempt.rs
auto merge of #11909 : thestinger/rust/tydesc, r=pcwalton
[rust.git] / src / test / run-pass / preempt.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // xfail-test
12 // This checks that preemption works.
13
14 // note: halfway done porting to modern rust
15 extern mod extra;
16
17 use std::comm;
18 use extra::comm;
19
20 fn starve_main(alive: Port<int>) {
21     info!("signalling main");
22     alive.recv();
23     info!("starving main");
24     let mut i: int = 0;
25     loop { i += 1; }
26 }
27
28 pub fn main() {
29     let (port, chan) = stream();
30
31     info!("main started");
32     spawn(proc() {
33         starve_main(port);
34     });
35     let mut i: int = 0;
36     info!("main waiting for alive signal");
37     chan.send(i);
38     info!("main got alive signal");
39     while i < 50 { info!("main iterated"); i += 1; }
40     info!("main completed");
41 }