diff options
| author | joboet <jonasboettiger@icloud.com> | 2025-08-09 19:07:08 +0200 |
|---|---|---|
| committer | joboet <jonasboettiger@icloud.com> | 2025-09-10 15:26:17 +0200 |
| commit | ad08577a503dfd03e308bd272e76d95e31c6d0ef (patch) | |
| tree | 3af8f20d10bdc66b12b45c66c049954f3a4c934f /library/std/src/thread/mod.rs | |
| parent | 4b15dd5a84742f9e7641b62e490765e0c1cb415c (diff) | |
| download | rust-ad08577a503dfd03e308bd272e76d95e31c6d0ef.tar.gz rust-ad08577a503dfd03e308bd272e76d95e31c6d0ef.zip | |
std: move `thread` into `sys`
Diffstat (limited to 'library/std/src/thread/mod.rs')
| -rw-r--r-- | library/std/src/thread/mod.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index b6059c28cec..97b506c1b8f 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -550,7 +550,7 @@ impl Builder { } if let Some(name) = their_thread.cname() { - imp::Thread::set_name(name); + imp::set_name(name); } let f = f.into_inner(); @@ -763,7 +763,7 @@ where /// [`Mutex`]: crate::sync::Mutex #[stable(feature = "rust1", since = "1.0.0")] pub fn yield_now() { - imp::Thread::yield_now() + imp::yield_now() } /// Determines whether the current thread is unwinding because of panic. @@ -884,7 +884,7 @@ pub fn sleep_ms(ms: u32) { /// ``` #[stable(feature = "thread_sleep", since = "1.4.0")] pub fn sleep(dur: Duration) { - imp::Thread::sleep(dur) + imp::sleep(dur) } /// Puts the current thread to sleep until the specified deadline has passed. @@ -983,7 +983,7 @@ pub fn sleep(dur: Duration) { /// ``` #[unstable(feature = "thread_sleep_until", issue = "113752")] pub fn sleep_until(deadline: Instant) { - imp::Thread::sleep_until(deadline) + imp::sleep_until(deadline) } /// Used to ensure that `park` and `park_timeout` do not unwind, as that can |
