Skip to content

Commit 617039b

Browse files
authored
Auto merge of #34756 - habnabit:mutex-refunwindsafe, r=alexcrichton
Mutex and RwLock need RefUnwindSafe too Incomplete, because I don't know what the appropriate stability annotation is here, but this is an attempt to bring the documentation for `std::panic` in line with reality. Right now, it says: >Types like `&Mutex<T>`, however, are unwind safe because they implement poisoning by default. But only `Mutex<T>`, not `&Mutex<T>`, is unwind-safe.
2 parents 4bbb1c5 + fbec232 commit 617039b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/libstd/panic.rs

+5
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,11 @@ impl<T: ?Sized> !RefUnwindSafe for UnsafeCell<T> {}
227227
#[stable(feature = "catch_unwind", since = "1.9.0")]
228228
impl<T> RefUnwindSafe for AssertUnwindSafe<T> {}
229229

230+
#[stable(feature = "unwind_safe_lock_refs", since = "1.12.0")]
231+
impl<T: ?Sized> RefUnwindSafe for Mutex<T> {}
232+
#[stable(feature = "unwind_safe_lock_refs", since = "1.12.0")]
233+
impl<T: ?Sized> RefUnwindSafe for RwLock<T> {}
234+
230235
#[stable(feature = "catch_unwind", since = "1.9.0")]
231236
impl<T> Deref for AssertUnwindSafe<T> {
232237
type Target = T;

src/test/run-pass/panic-safe.rs

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ fn main() {
3636
assert::<Box<i32>>();
3737
assert::<Mutex<i32>>();
3838
assert::<RwLock<i32>>();
39+
assert::<&Mutex<i32>>();
40+
assert::<&RwLock<i32>>();
3941
assert::<Rc<i32>>();
4042
assert::<Arc<i32>>();
4143

0 commit comments

Comments
 (0)