diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2022-03-30 13:59:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-30 13:59:27 +0200 |
| commit | 25eb06077997bca0b20f0ef7d828672a8140519e (patch) | |
| tree | 331477ba4f3e28b4c862afceb4e71f8148259680 /library/std/src/thread | |
| parent | 5a25e228eb7df1f8d227460c577215e5c75794b2 (diff) | |
| download | rust-25eb06077997bca0b20f0ef7d828672a8140519e.tar.gz rust-25eb06077997bca0b20f0ef7d828672a8140519e.zip | |
Don't stabilize ScopedJoinHandle::is_finished yet.
Diffstat (limited to 'library/std/src/thread')
| -rw-r--r-- | library/std/src/thread/scoped.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/library/std/src/thread/scoped.rs b/library/std/src/thread/scoped.rs index e3da79932c7..eeccc99b3a3 100644 --- a/library/std/src/thread/scoped.rs +++ b/library/std/src/thread/scoped.rs @@ -316,7 +316,6 @@ impl<'scope, T> ScopedJoinHandle<'scope, T> { /// /// This function does not block. To block while waiting on the thread to finish, /// use [`join`][Self::join]. - #[stable(feature = "thread_is_running", since = "1.61.0")] pub fn is_finished(&self) -> bool { Arc::strong_count(&self.0.packet) == 1 } |
