Get the previous frame pointer for signal-safe traceback walking.
(&self)
| 831 | |
| 832 | /// Get the previous frame pointer for signal-safe traceback walking. |
| 833 | pub fn previous_frame(&self) -> *const Frame { |
| 834 | self.previous.load(atomic::Ordering::Relaxed) |
| 835 | } |
| 836 | |
| 837 | pub fn lasti(&self) -> u32 { |
| 838 | self.lasti.load(Relaxed) |
no test coverage detected