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

33 lines
1000 B
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-24 04:03:09 +00:00
// This checks that preemption works.
fn starve_main(alive: chan<int>) {
2012-08-23 00:24:52 +00:00
debug!("signalling main");
2011-07-27 12:19:39 +00:00
alive <| 1;
2012-08-23 00:24:52 +00:00
debug!("starving main");
2011-07-27 12:19:39 +00:00
let i: int = 0;
loop { i += 1; }
2010-06-24 04:03:09 +00:00
}
2011-04-19 20:35:49 +00:00
fn main() {
let alive: port<int> = port();
2012-08-23 00:24:52 +00:00
debug!("main started");
2011-07-27 12:19:39 +00:00
let s: task = spawn starve_main(chan(alive));
let i: int;
2012-08-23 00:24:52 +00:00
debug!("main waiting for alive signal");
2011-07-27 12:19:39 +00:00
alive |> i;
2012-08-23 00:24:52 +00:00
debug!("main got alive signal");
while i < 50 { debug!("main iterated"); i += 1; }
debug!("main completed");
}