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
27
28
29
30
31
32
33
34
35
36
37
use foreign_types::{ForeignTypeRef, Opaque};
use std::ptr;
use crate::dwfl::{Error, ThreadRef};
pub struct FrameRef(Opaque);
impl ForeignTypeRef for FrameRef {
type CType = dw_sys::Dwfl_Frame;
}
impl FrameRef {
pub fn thread(&self) -> &ThreadRef {
unsafe {
let ptr = dw_sys::dwfl_frame_thread(self.as_ptr());
ThreadRef::from_ptr(ptr)
}
}
pub fn pc(&self, is_activation: Option<&mut bool>) -> Result<u64, Error> {
unsafe {
let mut pc = 0;
let isactivation = is_activation.map_or(ptr::null_mut(), |b| b as *mut bool);
if dw_sys::dwfl_frame_pc(self.as_ptr(), &mut pc, isactivation) {
Ok(pc)
} else {
Err(Error::new())
}
}
}
}