blob: a0d6876691833e03208ffe9b491561c2569358e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! Unwinding for unsupported target.
//!
//! Stubs that simply abort for targets that don't support unwinding otherwise.
use alloc::boxed::Box;
use core::any::Any;
use core::intrinsics;
pub(crate) unsafe fn cleanup(_ptr: *mut u8) -> Box<dyn Any + Send> {
intrinsics::abort()
}
pub(crate) unsafe fn panic(_data: Box<dyn Any + Send>) -> u32 {
intrinsics::abort()
}
|