about summary refs log tree commit diff
path: root/library/std/src/thread
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2021-11-01 15:04:24 +0100
committerMara Bos <m-ou.se@m-ou.se>2021-11-01 15:04:24 +0100
commit978ebd9c8cd91079be62656ca193a9cbc85e157b (patch)
treefc085ca2289d11480c6fcf5796f032319685aea2 /library/std/src/thread
parent67362b301bd00802c10c9fa9bc7396dc7ada83dd (diff)
downloadrust-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.rs2
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
     }