2012-12-10 17:32:48 -08:00
|
|
|
// 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.
|
|
|
|
|
2011-08-31 13:22:58 +02:00
|
|
|
// xfail-test
|
2010-06-23 21:03:09 -07:00
|
|
|
// This checks that preemption works.
|
|
|
|
|
2011-08-10 09:27:22 -07:00
|
|
|
fn starve_main(alive: chan<int>) {
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("signalling main");
|
2011-07-27 14:19:39 +02:00
|
|
|
alive <| 1;
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("starving main");
|
2011-07-27 14:19:39 +02:00
|
|
|
let i: int = 0;
|
2012-03-09 16:11:56 -08:00
|
|
|
loop { i += 1; }
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2011-08-10 09:27:22 -07:00
|
|
|
let alive: port<int> = port();
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("main started");
|
2011-07-27 14:19:39 +02:00
|
|
|
let s: task = spawn starve_main(chan(alive));
|
|
|
|
let i: int;
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("main waiting for alive signal");
|
2011-07-27 14:19:39 +02:00
|
|
|
alive |> i;
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("main got alive signal");
|
|
|
|
while i < 50 { debug!("main iterated"); i += 1; }
|
|
|
|
debug!("main completed");
|
2011-08-10 09:27:22 -07:00
|
|
|
}
|