about summary refs log tree commit diff
path: root/library/panic_unwind/src/hermit.rs
AgeCommit message (Collapse)AuthorLines
2025-05-15deduplicate abort implementationsjoboet-12/+8
Currently, the code for process aborts is duplicated across `panic_abort` and `std`. This PR uses `#[rustc_std_internal_symbol]` to make the `std` implementation available to `panic_abort` via the linker, thereby deduplicating the code.
2025-02-14panic_unwind: Apply unsafe_op_in_unsafe_fnEric Huss-2/+6
2025-02-09Mark extern blocks as unsafeMichael Goulet-2/+2
2025-02-04Fix unreachable_pub lint for hermit targetThalia Archibald-2/+2
2025-01-20panic_unwind: add `#![warn(unreachable_pub)]`Urgau-2/+2
2020-07-27mv std libs to library/mark-0/+20