#unwind #abort #panic

unwind_aborts

使用这个简单技巧来防止您的恐慌在FFI边界之外展开!

2个版本

0.1.1 2020年3月28日
0.1.0 2020年3月28日

#234 in FFI

每月下载28

MIT授权

5KB

unwind_aborts

使用这个简单技巧来防止您的恐慌在FFI边界之外展开!

打算替换使用#[unwind(aborts)]直到它稳定。

使用方法

将此添加到您的[dependencies]中的Cargo.toml

unwind_aborts = "0.1.0"

使用#[unwind_aborts]注解您的函数来捕获堆栈展开并终止进程

use unwind_aborts::unwind_aborts;

#[unwind_aborts]
pub extern fn foo() {
    panic!("this is safe");
}

上面的例子等同于

pub extern fn foo() {
    let result = std::panic::catch_unwind(|| {
        panic!("this is safe");
    });
    match result {
        Ok(x) => x,
        Err(_) => std::process::abort(),
    }
}

lib.rs:

使用这个简单技巧来防止您的恐慌在FFI边界之外展开!

打算替换使用#[unwind(aborts)]直到它稳定。

使用方法

将此添加到您的[dependencies]中的Cargo.toml

unwind_aborts = "0.1.0"

使用#[unwind_aborts]注解您的函数来捕获堆栈展开并终止进程

use unwind_aborts::unwind_aborts;

#[unwind_aborts]
pub extern fn foo() {
    panic!("this is safe");
}

上面的例子等同于

pub extern fn foo() {
    let result = std::panic::catch_unwind(|| {
        panic!("this is safe");
    });
    match result {
        Ok(x) => x,
        Err(_) => std::process::abort(),
    }
}

依赖项

~1.5MB
~33K SLoC