2012-12-11 01:32:48 +00: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 11:22:58 +00:00
|
|
|
// xfail-test
|
2010-06-24 04:03:09 +00:00
|
|
|
// This checks that preemption works.
|
|
|
|
|
2011-08-10 16:27:22 +00:00
|
|
|
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;
|
2012-03-10 00:11:56 +00:00
|
|
|
loop { i += 1; }
|
2010-06-24 04:03:09 +00:00
|
|
|
}
|
|
|
|
|
2011-04-19 20:35:49 +00:00
|
|
|
fn main() {
|
2011-08-10 16:27:22 +00:00
|
|
|
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");
|
2011-08-10 16:27:22 +00:00
|
|
|
}
|