about summary refs log tree commit diff
path: root/library/std/src/sys/pal/trusty/mod.rs
diff options
context:
space:
mode:
authorThalia Archibald <thalia@archibald.dev>2025-09-19 18:13:21 -0600
committerThalia Archibald <thalia@archibald.dev>2025-09-19 19:18:10 -0600
commit6a5838105d8496b9db5dc61b0bd12dda70f7bbe1 (patch)
treea444f9c14fa029b576ff5b7a920f6472adc20a92 /library/std/src/sys/pal/trusty/mod.rs
parentec38671075266e9cee0348701da2e133379e7c6c (diff)
downloadrust-6a5838105d8496b9db5dc61b0bd12dda70f7bbe1.tar.gz
rust-6a5838105d8496b9db5dc61b0bd12dda70f7bbe1.zip
Fix unsupported std::sys::thread
Fixes building std for any platform with an unsupported thread
abstraction. This includes {aarch64,armv7,x86_64}-unknown-trusty and
riscv32im-risc0-zkvm-elf, which explicitly include the unsupported
module, and platforms with no PAL.

Bug fix for PR 145177 (std: move thread into sys).
Diffstat (limited to 'library/std/src/sys/pal/trusty/mod.rs')
-rw-r--r--library/std/src/sys/pal/trusty/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/sys/pal/trusty/mod.rs b/library/std/src/sys/pal/trusty/mod.rs
index 275f6062463..cf0c098f8a2 100644
--- a/library/std/src/sys/pal/trusty/mod.rs
+++ b/library/std/src/sys/pal/trusty/mod.rs
@@ -7,8 +7,6 @@ mod common;
 pub mod os;
 #[path = "../unsupported/pipe.rs"]
 pub mod pipe;
-#[path = "../unsupported/thread.rs"]
-pub mod thread;
 #[path = "../unsupported/time.rs"]
 pub mod time;