Skip to content

Commit 978ebd9

Browse files
committed
Add tracking issue for thread_is_running.
1 parent 67362b3 commit 978ebd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/thread/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1407,7 +1407,7 @@ impl<T> JoinHandle<T> {
14071407
///
14081408
/// This might return `false` for a brief moment after the thread's main
14091409
/// function has returned, but before the thread itself has stopped running.
1410-
#[unstable(feature = "thread_is_running", issue = "none")]
1410+
#[unstable(feature = "thread_is_running", issue = "90470")]
14111411
pub fn is_running(&self) -> bool {
14121412
Arc::strong_count(&self.0.packet.0) > 1
14131413
}

0 commit comments

Comments
 (0)