| Age | Commit message (Expand) | Author | Lines |
| 2023-07-29 | Change default panic handler message format. | Mara Bos | -1/+1 |
| 2023-07-27 | When flushing delayed span bugs, write to the ICE dump file even if it doesn'... | Esteban Küber | -1/+1 |
| 2023-07-19 | On nightly, dump ICE backtraces to disk | Esteban Küber | -7/+31 |
| 2023-05-27 | Rework handling of recursive panics | Amanieu d'Antras | -53/+67 |
| 2023-05-10 | Remove useless drop of copy type | Urgau | -1/+1 |
| 2023-04-25 | Revert "Report allocation errors as panics" | Matthias Krüger | -26/+17 |
| 2023-04-16 | Report allocation errors as panics | Amanieu d'Antras | -17/+26 |
| 2023-04-13 | Document catch_fn in r#try cannot unwind | Gary Guo | -0/+1 |
| 2023-03-26 | Remove unnecessary raw pointer in __rust_start_panic arg | bjorn3 | -10/+5 |
| 2023-02-20 | Explain the default panic hook better | Matt Harding | -6/+10 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -2/+2 |
| 2022-12-30 | Replace libstd, libcore, liballoc in docs. | jonathanCogan | -1/+1 |
| 2022-12-28 | adjust message on non-unwinding panic | Ralf Jung | -1/+5 |
| 2022-11-29 | Adjust inlining attributes around panic_immediate_abort | Ben Kimock | -2/+2 |
| 2022-10-06 | Fix whitespace | Florian Bartels | -2/+2 |
| 2022-10-06 | Prevent UB in child process after calling libc::fork | Florian Bartels | -4/+23 |
| 2022-09-23 | Update doc after renaming fn is_zero | Florian Bartels | -2/+2 |
| 2022-09-19 | std: use `sync::RwLock` for internal statics | joboet | -79/+50 |
| 2022-05-23 | Auto merge of #92461 - rust-lang:const_tls_local_panic_count, r=Mark-Simulacrum | bors | -1/+1 |
| 2022-05-14 | Use Rust ABI for `__rust_start_panic` and `_{rdl,rg}_oom` | Gary Guo | -1/+1 |
| 2022-04-23 | Use const initializer for LOCAL_PANIC_COUNT | bjorn3 | -1/+1 |
| 2022-04-06 | Rename RWLock to RwLock in std::sys. | Mara Bos | -2/+2 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -3/+3 |
| 2022-02-02 | Configure panic hook backtrace behavior | Mark Rousskov | -8/+15 |
| 2022-01-22 | Rollup merge of #92828 - Amanieu:unwind-abort, r=dtolnay | Matthias Krüger | -8/+14 |
| 2022-01-17 | Help optimize out backtraces when disabled | Kornel | -1/+1 |
| 2022-01-17 | Add PanicInfo::can_unwind which indicates whether a panic handler is | Amanieu d'Antras | -8/+14 |
| 2022-01-08 | Add safety comments to panic::(set/take/update)_hook | Badel2 | -0/+15 |
| 2022-01-08 | Change panic::update_hook to simplify usage | Badel2 | -22/+23 |
| 2022-01-07 | Implement panic::update_hook | Badel2 | -0/+63 |
| 2021-12-14 | Fix a bunch of typos | Frank Steffahn | -3/+3 |
| 2021-10-30 | Add #[must_use] to remaining std functions (O-Z) | John Kugelman | -0/+3 |
| 2021-10-25 | Clean up special function const checks | Gary Guo | -1/+2 |
| 2021-10-19 | Deduplicate panic_fmt | Gary Guo | -24/+2 |
| 2021-09-08 | Bump stage0 compiler to 1.56 | Mark Rousskov | -1/+1 |
| 2021-08-03 | rustc: Fill out remaining parts of C-unwind ABI | Alex Crichton | -2/+3 |
| 2021-07-28 | Make const panic!("..") work in Rust 2021. | Mara Bos | -0/+1 |
| 2021-06-10 | Rollup merge of #84687 - a1phyr:improve_rwlock, r=m-ou-se | Yuki Okushi | -8/+7 |
| 2021-06-06 | Default panic message should print Box<dyn Any> | Reagan McFarland | -1/+1 |
| 2021-06-01 | Multiple improvements to RwLocks | Benoît du Garreau | -8/+7 |
| 2021-05-19 | Rename `rterr` to `rtprintpanic` | Christiaan Dirkx | -6/+3 |
| 2021-05-19 | Replace `sys_common::util::dumb_print` with `rterr!` | Christiaan Dirkx | -5/+5 |
| 2021-05-07 | std panicking: ALWAYS_ABORT: use Relaxed memory ordering | Ian Jackson | -2/+2 |
| 2021-05-07 | std panicking: Provide panic::always_abort | Ian Jackson | -15/+49 |
| 2021-05-07 | std panicking: Make decrease() return () | Ian Jackson | -2/+2 |
| 2020-12-25 | fix another comment, and make __rust_start_panic code a bit more semantically... | Ralf Jung | -2/+3 |
| 2020-12-22 | update a seemingly outdated comment | Ralf Jung | -3/+2 |
| 2020-12-21 | slightly more typed interface to panic implementation | Ralf Jung | -2/+2 |
| 2020-11-10 | Merge set_panic and set_print into set_output_capture. | Mara Bos | -4/+4 |
| 2020-11-10 | Use Vec<u8> for LOCAL_STD{OUT,ERR} instead of dyn Write. | Mara Bos | -22/+1 |