about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/sync.rs
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2024-03-02 18:32:42 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2025-04-29 14:03:07 +0200
commitef9403371f2d4759cd7b0d0a276e63aae2ce68fe (patch)
treee08c50bc567a888aa52f2d4d346bf846c867bfc1 /compiler/rustc_data_structures/src/sync.rs
parentefcbb94dccbe0fcc1076f031f88332db4a6a2a52 (diff)
downloadrust-ef9403371f2d4759cd7b0d0a276e63aae2ce68fe.tar.gz
rust-ef9403371f2d4759cd7b0d0a276e63aae2ce68fe.zip
Drop AST on a separate thread and prefetch `hir_crate`
Diffstat (limited to 'compiler/rustc_data_structures/src/sync.rs')
-rw-r--r--compiler/rustc_data_structures/src/sync.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/sync.rs b/compiler/rustc_data_structures/src/sync.rs
index 616a18a72ab..80d49effbf8 100644
--- a/compiler/rustc_data_structures/src/sync.rs
+++ b/compiler/rustc_data_structures/src/sync.rs
@@ -43,7 +43,7 @@ pub use self::freeze::{FreezeLock, FreezeReadGuard, FreezeWriteGuard};
 pub use self::lock::{Lock, LockGuard, Mode};
 pub use self::mode::{is_dyn_thread_safe, set_dyn_thread_safe_mode};
 pub use self::parallel::{
-    join, par_for_each_in, par_map, parallel_guard, scope, try_par_for_each_in,
+    join, par_for_each_in, par_map, parallel_guard, scope, spawn, try_par_for_each_in,
 };
 pub use self::vec::{AppendOnlyIndexVec, AppendOnlyVec};
 pub use self::worker_local::{Registry, WorkerLocal};