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-06-20 19:19:50 -05:00
|
|
|
/*
|
|
|
|
A simple way to make sure threading works. This should use all the
|
|
|
|
CPU cycles an any machines that we're likely to see for a while.
|
|
|
|
*/
|
2011-08-31 06:22:58 -05:00
|
|
|
// xfail-test
|
2011-06-20 19:19:50 -05:00
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2012-09-05 14:32:05 -05:00
|
|
|
use task::join;
|
2011-06-20 19:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn loop(n: int) {
|
|
|
|
let t1: task;
|
|
|
|
let t2: task;
|
2011-06-20 19:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
if n > 0 { t1 = spawn loop(n - 1); t2 = spawn loop(n - 1); }
|
2011-06-20 19:19:50 -05:00
|
|
|
|
|
|
|
|
2012-03-09 18:11:56 -06:00
|
|
|
loop { }
|
2011-06-20 19:19:50 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
pub fn main() { let t: task = spawn loop(5); join(t); }
|