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-05 20:33:58 -06:00
|
|
|
#![feature(std_misc)]
|
|
|
|
|
2014-12-14 02:05:32 -06:00
|
|
|
use std::thread::Builder;
|
2014-11-26 07:12:18 -06:00
|
|
|
use std::thunk::Thunk;
|
2014-02-07 13:08:32 -06:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
static generations: uint = 1024+256+128+49;
|
2012-11-15 14:30:04 -06:00
|
|
|
|
2015-02-17 06:48:32 -06:00
|
|
|
fn spawn(f: Thunk<'static>) {
|
2015-01-05 23:59:45 -06:00
|
|
|
Builder::new().stack_size(32 * 1024).spawn(move|| f.invoke(()));
|
2014-02-21 17:41:51 -06:00
|
|
|
}
|
|
|
|
|
2015-02-17 06:48:32 -06:00
|
|
|
fn child_no(x: uint) -> Thunk<'static> {
|
2014-11-26 07:12:18 -06:00
|
|
|
Thunk::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
|
|
|
}
|