2012-12-10 19:32:48 -06: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 06:22:58 -05:00
|
|
|
// xfail-test
|
2010-06-23 23:03:09 -05:00
|
|
|
// This checks that preemption works.
|
|
|
|
|
2011-08-10 11:27:22 -05:00
|
|
|
fn starve_main(alive: chan<int>) {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("signalling main");
|
2013-04-18 17:13:24 -05:00
|
|
|
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;
|
2012-03-09 18:11:56 -06:00
|
|
|
loop { i += 1; }
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2011-08-10 11:27:22 -05:00
|
|
|
let alive: port<int> = port();
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("main started");
|
2013-04-18 17:13:24 -05:00
|
|
|
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");
|
2013-04-18 17:13:24 -05:00
|
|
|
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");
|
2011-08-10 11:27:22 -05:00
|
|
|
}
|