about summary refs log tree commit diff
path: root/library/std/src/sync
diff options
context:
space:
mode:
authorThayne McCombs <astrothayne@gmail.com>2022-04-27 00:05:34 -0600
committerThayne McCombs <astrothayne@gmail.com>2022-04-27 00:05:34 -0600
commitf7ac8e7aeffa796ac5f19b66c0c59b20312ac520 (patch)
treee83bb8c555fef5f297cb2a189faaa0e4d409b2a2 /library/std/src/sync
parentfc38388bc12716d987df1303aa52f1dc4884fc58 (diff)
downloadrust-f7ac8e7aeffa796ac5f19b66c0c59b20312ac520.tar.gz
rust-f7ac8e7aeffa796ac5f19b66c0c59b20312ac520.zip
Add tracking issue number for mutex_unpoison
Diffstat (limited to 'library/std/src/sync')
-rw-r--r--library/std/src/sync/mutex.rs2
-rw-r--r--library/std/src/sync/rwlock.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/sync/mutex.rs b/library/std/src/sync/mutex.rs
index 4d6916fba98..c9fbdd1270b 100644
--- a/library/std/src/sync/mutex.rs
+++ b/library/std/src/sync/mutex.rs
@@ -392,7 +392,7 @@ impl<T: ?Sized> Mutex<T> {
     /// assert_eq!(mutex.is_poisoned(), false);
     /// ```
     #[inline]
-    #[unstable(feature = "mutex_unpoison", issue = "none")]
+    #[unstable(feature = "mutex_unpoison", issue = "96469")]
     pub fn clear_poison(guard: &MutexGuard<'_, T>) {
         guard.lock.poison.clear();
     }
diff --git a/library/std/src/sync/rwlock.rs b/library/std/src/sync/rwlock.rs
index b7a7186da13..d068b15dbca 100644
--- a/library/std/src/sync/rwlock.rs
+++ b/library/std/src/sync/rwlock.rs
@@ -395,7 +395,7 @@ impl<T: ?Sized> RwLock<T> {
     /// assert_eq!(lock.is_poisoned(), false);
     /// ```
     #[inline]
-    #[unstable(feature = "mutex_unpoison", issue = "none")]
+    #[unstable(feature = "mutex_unpoison", issue = "96469")]
     pub fn clear_poison(guard: &RwLockWriteGuard<'_, T>) {
         guard.lock.poison.clear();
     }