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