//! Unwinding for *hermit* target. //! //! Right now we don't support this, so this is just stubs. use alloc::boxed::Box; use core::any::Any; pub(crate) unsafe fn cleanup(_ptr: *mut u8) -> Box { unsafe extern "C" { fn __rust_abort() -> !; } unsafe { __rust_abort(); } } pub(crate) unsafe fn panic(_data: Box) -> u32 { unsafe extern "C" { fn __rust_abort() -> !; } unsafe { __rust_abort(); } }