rust/src/test/run-pass/preempt.rs

35 lines
1.0 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// xfail-test
2010-06-23 23:03:09 -05:00
// This checks that preemption works.
fn starve_main(alive: chan<int>) {
2012-08-22 19:24:52 -05:00
debug!("signalling main");
alive.recv(1);
2012-08-22 19:24:52 -05:00
debug!("starving main");
2011-07-27 07:19:39 -05:00
let i: int = 0;
loop { i += 1; }
2010-06-23 23:03:09 -05:00
}
pub fn main() {
let alive: port<int> = port();
2012-08-22 19:24:52 -05:00
debug!("main started");
let s: task = do task::spawn {
starve_main(chan(alive));
};
2011-07-27 07:19:39 -05:00
let i: int;
2012-08-22 19:24:52 -05:00
debug!("main waiting for alive signal");
alive.send(i);
2012-08-22 19:24:52 -05:00
debug!("main got alive signal");
while i < 50 { debug!("main iterated"); i += 1; }
debug!("main completed");
}