diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-11-01 15:04:24 +0100 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2021-11-01 15:04:24 +0100 |
| commit | 978ebd9c8cd91079be62656ca193a9cbc85e157b (patch) | |
| tree | fc085ca2289d11480c6fcf5796f032319685aea2 /library/std/src/thread | |
| parent | 67362b301bd00802c10c9fa9bc7396dc7ada83dd (diff) | |
| download | rust-978ebd9c8cd91079be62656ca193a9cbc85e157b.tar.gz rust-978ebd9c8cd91079be62656ca193a9cbc85e157b.zip | |
Add tracking issue for thread_is_running.
Diffstat (limited to 'library/std/src/thread')
| -rw-r--r-- | library/std/src/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index f8f64117113..12d9f955bb7 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -1407,7 +1407,7 @@ impl<T> JoinHandle<T> { /// /// This might return `false` for a brief moment after the thread's main /// function has returned, but before the thread itself has stopped running. - #[unstable(feature = "thread_is_running", issue = "none")] + #[unstable(feature = "thread_is_running", issue = "90470")] pub fn is_running(&self) -> bool { Arc::strong_count(&self.0.packet.0) > 1 } |
