summary refs log tree commit diff
path: root/library/std/src/thread/mod.rs
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2024-02-28 19:12:29 +0100
committerjoboet <jonasboettiger@icloud.com>2024-02-28 19:12:29 +0100
commit45ca53f9d867087fdf8fa7371b9f4f8b38a01a41 (patch)
tree9379b3200d95e582d7d385aae6c39fd77b868279 /library/std/src/thread/mod.rs
parentd377991bad40c0d5c79bfa58465295751e8542fe (diff)
downloadrust-45ca53f9d867087fdf8fa7371b9f4f8b38a01a41.tar.gz
rust-45ca53f9d867087fdf8fa7371b9f4f8b38a01a41.zip
std: move thread local implementation to `sys`
Diffstat (limited to 'library/std/src/thread/mod.rs')
-rw-r--r--library/std/src/thread/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs
index 76af7fec926..85de2980133 100644
--- a/library/std/src/thread/mod.rs
+++ b/library/std/src/thread/mod.rs
@@ -205,7 +205,7 @@ cfg_if::cfg_if! {
         #[doc(hidden)]
         #[unstable(feature = "thread_local_internals", issue = "none")]
         pub mod local_impl {
-            pub use crate::sys::common::thread_local::{thread_local_inner, Key, abort_on_dtor_unwind};
+            pub use crate::sys::thread_local::{thread_local_inner, Key, abort_on_dtor_unwind};
         }
     }
 }