This commit is contained in:
mlokr 2024-07-19 12:34:22 +02:00
parent aeb3a37f7d
commit 9a8a56fe97
No known key found for this signature in database
GPG key ID: DEA147DDEE644993

View file

@ -444,11 +444,7 @@ pub fn parse_from_fs(extra_threads: usize, root: &str) -> io::Result<Vec<Ast>> {
seen.lock().unwrap().insert(path.clone(), 0);
tasks.push((0, path, None));
if extra_threads == 0 {
thread();
} else {
std::thread::scope(|s| (0..extra_threads + 1).for_each(|_| _ = s.spawn(thread)));
}
std::thread::scope(|s| (0..extra_threads + 1).for_each(|_| _ = s.spawn(thread)));
ast.into_inner().unwrap().into_iter().collect::<io::Result<Vec<_>>>()
}