1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#![allow(missing_docs)]
use std::io::{self, Write};
use std::panic::{self, AssertUnwindSafe};
use std::process;
pub fn catch_unwind<F, R>(label: &'static str, foreign_call: F) -> R
where
F: FnOnce() -> R,
{
match panic::catch_unwind(AssertUnwindSafe(foreign_call)) {
Ok(ret) => ret,
Err(_) => abort(label),
}
}
#[cold]
fn abort(label: &'static str) -> ! {
let mut stderr = io::stderr();
let _ = writeln!(stderr, "Error: panic in ffi function {}, aborting.", label);
process::abort();
}