2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 19:32:48 -06:00
|
|
|
// 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.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
2016-08-08 18:39:37 -05:00
|
|
|
// ignore-emscripten
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-12-14 02:05:32 -06:00
|
|
|
use std::thread::Builder;
|
2014-02-07 13:08:32 -06:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
static generations: usize = 1024+256+128+49;
|
2012-11-15 14:30:04 -06:00
|
|
|
|
2015-08-11 19:27:05 -05:00
|
|
|
fn spawn(mut f: Box<FnMut() + 'static + Send>) {
|
2015-04-01 10:12:30 -05:00
|
|
|
Builder::new().stack_size(32 * 1024).spawn(move|| f());
|
2014-02-21 17:41:51 -06:00
|
|
|
}
|
|
|
|
|
2015-08-11 19:27:05 -05:00
|
|
|
fn child_no(x: usize) -> Box<FnMut() + 'static + Send> {
|
2015-04-01 10:12:30 -05:00
|
|
|
Box::new(move|| {
|
2012-11-15 14:30:04 -06:00
|
|
|
if x < generations {
|
2014-02-21 17:41:51 -06:00
|
|
|
spawn(child_no(x+1));
|
2012-11-15 14:30:04 -06:00
|
|
|
}
|
2014-11-26 07:12:18 -06:00
|
|
|
})
|
2012-11-15 14:30:04 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2014-02-21 17:41:51 -06:00
|
|
|
spawn(child_no(0));
|
2012-11-15 14:30:04 -06:00
|
|
|
}
|