about summary refs log tree commit diff
path: root/library/std/src/sys/solid
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2022-12-31 11:00:54 +0100
committerjoboet <jonasboettiger@icloud.com>2022-12-31 11:00:54 +0100
commit78245286dcde9f2cf99a370ec0cd4383fa684404 (patch)
tree595c18d4e82ed2c74443128948582e20253a08d2 /library/std/src/sys/solid
parent247e44e61d934e1927db0ff557fe17f131a2379c (diff)
downloadrust-78245286dcde9f2cf99a370ec0cd4383fa684404.tar.gz
rust-78245286dcde9f2cf99a370ec0cd4383fa684404.zip
std: use id-based thread parking on SOLID
Diffstat (limited to 'library/std/src/sys/solid')
-rw-r--r--library/std/src/sys/solid/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/sys/solid/mod.rs b/library/std/src/sys/solid/mod.rs
index 5867979a2a7..923d27fd936 100644
--- a/library/std/src/sys/solid/mod.rs
+++ b/library/std/src/sys/solid/mod.rs
@@ -13,9 +13,9 @@ mod itron {
     pub(super) mod spin;
     pub(super) mod task;
     pub mod thread;
+    pub mod thread_parking;
     pub(super) mod time;
     use super::unsupported;
-    pub mod wait_flag;
 }
 
 pub mod alloc;
@@ -43,8 +43,8 @@ pub use self::itron::thread;
 pub mod memchr;
 pub mod thread_local_dtor;
 pub mod thread_local_key;
+pub use self::itron::thread_parking;
 pub mod time;
-pub use self::itron::wait_flag;
 
 mod rwlock;