unwind-sys 0.1.4

FFI bindings to libunwind
Documentation
1
2
3
4
5
6
7
8
9
10
use libc::{c_void, pid_t};

use crate::*;

extern "C" {
    pub fn _UPT_create(pid: pid_t) -> *mut c_void;
    pub fn _UPT_destroy(p: *mut c_void);

    pub static _UPT_accessors: unw_accessors_t;
}