2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(unused_must_use)]
|
2018-08-31 13:02:01 +00:00
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
2017-10-18 01:45:42 +00:00
|
|
|
// ignore-emscripten no threads
|
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
|
|
|
|
2019-05-28 18:47:21 +00:00
|
|
|
fn spawn(mut f: Box<dyn 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
|
|
|
}
|
|
|
|
|
2019-05-28 18:47:21 +00:00
|
|
|
fn child_no(x: usize) -> Box<dyn 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
|
|
|
}
|