about summary refs log tree commit diff
path: root/library/std/src/sys/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-09-11 22:31:43 +0000
committerbors <bors@rust-lang.org>2025-09-11 22:31:43 +0000
commit2a9bacf6187685931d52346a0ecff2e52bdc91cc (patch)
tree89917948fb14e749c6441b3d7b7fd98fb015577a /library/std/src/sys/mod.rs
parent5eda692e73f37dcbe2437ce878db7bb71f323e74 (diff)
parentf049b6147c15496d70b69490dbcaef4f824f1cdf (diff)
downloadrust-2a9bacf6187685931d52346a0ecff2e52bdc91cc.tar.gz
rust-2a9bacf6187685931d52346a0ecff2e52bdc91cc.zip
Auto merge of #145177 - joboet:move-pal-thread, r=ibraheemdev
std: move `thread` into `sys`

Part of https://github.com/rust-lang/rust/issues/117276.
Diffstat (limited to 'library/std/src/sys/mod.rs')
-rw-r--r--library/std/src/sys/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/sys/mod.rs b/library/std/src/sys/mod.rs
index 8c115015580..2dbdc8a4e02 100644
--- a/library/std/src/sys/mod.rs
+++ b/library/std/src/sys/mod.rs
@@ -31,6 +31,7 @@ pub mod process;
 pub mod random;
 pub mod stdio;
 pub mod sync;
+pub mod thread;
 pub mod thread_local;
 
 // FIXME(117276): remove this, move feature implementations into individual