summaryrefslogtreecommitdiffstats
path: root/library/panic_unwind/src/dummy.rs
blob: a4bcd216c60f074b3f9c391fd3d8c98763c660a2 (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 unsafe fn cleanup(_ptr: *mut u8) -> Box<dyn Any + Send> {
    intrinsics::abort()
}

pub unsafe fn panic(_data: Box<dyn Any + Send>) -> u32 {
    intrinsics::abort()
}