about summary refs log tree commit diff
path: root/library/std/src/thread/parker/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/thread/parker/mod.rs')
-rw-r--r--library/std/src/thread/parker/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/thread/parker/mod.rs b/library/std/src/thread/parker/mod.rs
index 4dc5e1aa271..23c17c8e2cf 100644
--- a/library/std/src/thread/parker/mod.rs
+++ b/library/std/src/thread/parker/mod.rs
@@ -1,7 +1,7 @@
 cfg_if::cfg_if! {
     if #[cfg(any(target_os = "linux", target_os = "android"))] {
-        mod linux;
-        pub use linux::Parker;
+        mod futex;
+        pub use futex::Parker;
     } else {
         mod generic;
         pub use generic::Parker;