Stabilize mutex_unpoison feature

Closes #96469

@rustbot +T-libs-api
This commit is contained in:
Thayne McCombs 2024-01-10 02:34:34 -07:00
parent e927184629
commit 1ed855dedf
2 changed files with 2 additions and 6 deletions

View File

@ -383,8 +383,6 @@ pub fn is_poisoned(&self) -> bool {
/// # Examples
///
/// ```
/// #![feature(mutex_unpoison)]
///
/// use std::sync::{Arc, Mutex};
/// use std::thread;
///
@ -406,7 +404,7 @@ pub fn is_poisoned(&self) -> bool {
/// assert_eq!(*x, 1);
/// ```
#[inline]
#[unstable(feature = "mutex_unpoison", issue = "96469")]
#[stable(feature = "mutex_unpoison", since = "CURRENT_RUSTC_VERSION")]
pub fn clear_poison(&self) {
self.poison.clear();
}

View File

@ -387,8 +387,6 @@ pub fn is_poisoned(&self) -> bool {
/// # Examples
///
/// ```
/// #![feature(mutex_unpoison)]
///
/// use std::sync::{Arc, RwLock};
/// use std::thread;
///
@ -410,7 +408,7 @@ pub fn is_poisoned(&self) -> bool {
/// assert_eq!(*guard, 1);
/// ```
#[inline]
#[unstable(feature = "mutex_unpoison", issue = "96469")]
#[stable(feature = "mutex_unpoison", since = "CURRENT_RUSTC_VERSION")]
pub fn clear_poison(&self) {
self.poison.clear();
}