1
Fork 0

rollup merge of #22435: aturon/final-stab-thread

Conflicts:
	src/test/bench/rt-messaging-ping-pong.rs
	src/test/bench/rt-parfib.rs
	src/test/bench/task-perf-spawnalot.rs
This commit is contained in:
Alex Crichton 2015-02-17 15:19:18 -08:00
commit d8450d69bb
91 changed files with 856 additions and 676 deletions

View file

@ -365,7 +365,7 @@ fn rust_input(cratefile: &str, externs: core::Externs, matches: &getopts::Matche
let cr = Path::new(cratefile);
info!("starting to run rustc");
let (mut krate, analysis) = std::thread::Thread::scoped(move || {
let (mut krate, analysis) = std::thread::spawn(move || {
use rustc::session::config::Input;
let cr = cr;