Skip to content

Commit f7ac8e7

Browse files
committed
Add tracking issue number for mutex_unpoison
1 parent fc38388 commit f7ac8e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/sync/mutex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ impl<T: ?Sized> Mutex<T> {
392392
/// assert_eq!(mutex.is_poisoned(), false);
393393
/// ```
394394
#[inline]
395-
#[unstable(feature = "mutex_unpoison", issue = "none")]
395+
#[unstable(feature = "mutex_unpoison", issue = "96469")]
396396
pub fn clear_poison(guard: &MutexGuard<'_, T>) {
397397
guard.lock.poison.clear();
398398
}

library/std/src/sync/rwlock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ impl<T: ?Sized> RwLock<T> {
395395
/// assert_eq!(lock.is_poisoned(), false);
396396
/// ```
397397
#[inline]
398-
#[unstable(feature = "mutex_unpoison", issue = "none")]
398+
#[unstable(feature = "mutex_unpoison", issue = "96469")]
399399
pub fn clear_poison(guard: &RwLockWriteGuard<'_, T>) {
400400
guard.lock.poison.clear();
401401
}

0 commit comments

Comments
 (0)