about summary refs log tree commit diff
path: root/library/std/src/sys/pal/wasi/mod.rs
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2024-04-23 11:49:37 +0200
committerjoboet <jonasboettiger@icloud.com>2024-05-02 12:38:26 +0200
commita56fd370fc3e6b5cfbd9eb0b96f533d0bcca0b1f (patch)
treea1fc69d5c82808c6018e0500d1f77bafdf002b85 /library/std/src/sys/pal/wasi/mod.rs
parentfcc06c894b17f4d0c80b8934ea5f27faa894c960 (diff)
downloadrust-a56fd370fc3e6b5cfbd9eb0b96f533d0bcca0b1f.tar.gz
rust-a56fd370fc3e6b5cfbd9eb0b96f533d0bcca0b1f.zip
std: move thread parking to `sys::sync`
Diffstat (limited to 'library/std/src/sys/pal/wasi/mod.rs')
-rw-r--r--library/std/src/sys/pal/wasi/mod.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/library/std/src/sys/pal/wasi/mod.rs b/library/std/src/sys/pal/wasi/mod.rs
index a78547261ad..c1266619b36 100644
--- a/library/std/src/sys/pal/wasi/mod.rs
+++ b/library/std/src/sys/pal/wasi/mod.rs
@@ -39,13 +39,6 @@ pub mod thread_local_dtor;
 pub mod thread_local_key;
 pub mod time;
 
-cfg_if::cfg_if! {
-    if #[cfg(not(target_feature = "atomics"))] {
-        #[path = "../unsupported/thread_parking.rs"]
-        pub mod thread_parking;
-    }
-}
-
 #[path = "../unsupported/common.rs"]
 #[deny(unsafe_op_in_unsafe_fn)]
 #[allow(unused)]