diff options
| author | bors <bors@rust-lang.org> | 2023-08-27 06:12:00 +0000 | 
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-08-27 06:12:00 +0000 | 
| commit | f320f42c593b4353ea47448805f009ca0646cb06 (patch) | |
| tree | abc8466dcf4e631db31bf3533f8ca59258013b13 | |
| parent | e877e2a2c9a39103410ab94a7db4747af4497585 (diff) | |
| parent | 2bccf1e296cf0d6c061b8ec1a6a777c7eecd93e9 (diff) | |
| download | rust-f320f42c593b4353ea47448805f009ca0646cb06.tar.gz rust-f320f42c593b4353ea47448805f009ca0646cb06.zip | |
Auto merge of #114969 - kpreid:dropdoc, r=Mark-Simulacrum
Go into more detail about panicking in drop. This patch was sitting around in my drafts. I don't recall the motivation, but I think it was someone expressing confusion over “will likely abort” (since, in fact, a panicking drop _not_ caused by dropping while panicking will predictably _not_ abort). I hope that the new text will leave people well-informed about why not to panic and when it is reasonable to panic.
| -rw-r--r-- | library/core/src/ops/drop.rs | 10 | 
1 files changed, 8 insertions, 2 deletions
| diff --git a/library/core/src/ops/drop.rs b/library/core/src/ops/drop.rs index 9ebf426be95..21c23dabfc2 100644 --- a/library/core/src/ops/drop.rs +++ b/library/core/src/ops/drop.rs @@ -217,8 +217,13 @@ pub trait Drop { /// /// # Panics /// - /// Given that a [`panic!`] will call `drop` as it unwinds, any [`panic!`] - /// in a `drop` implementation will likely abort. + /// Implementations should generally avoid [`panic!`]ing, because `drop()` may itself be called + /// during unwinding due to a panic, and if the `drop()` panics in that situation (a “double + /// panic”), this will likely abort the program. It is possible to check [`panicking()`] first, + /// which may be desirable for a `Drop` implementation that is reporting a bug of the kind + /// “you didn't finish using this before it was dropped”; but most types should simply clean up + /// their owned allocations or other resources and return normally from `drop()`, regardless of + /// what state they are in. /// /// Note that even if this panics, the value is considered to be dropped; /// you must not cause `drop` to be called again. This is normally automatically @@ -227,6 +232,7 @@ pub trait Drop { /// /// [E0040]: ../../error_codes/E0040.html /// [`panic!`]: crate::panic! + /// [`panicking()`]: ../../std/thread/fn.panicking.html /// [`mem::drop`]: drop /// [`ptr::drop_in_place`]: crate::ptr::drop_in_place #[stable(feature = "rust1", since = "1.0.0")] | 
