mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-04 17:09:25 +01:00
(unw_is_signal_frame): Return true for any cursor with a non-zero abi_marker.
(Logical change 1.84)
This commit is contained in:
parent
5adda54e79
commit
f24e3d70a0
1 changed files with 3 additions and 1 deletions
|
@ -39,5 +39,7 @@ unw_is_signal_frame (unw_cursor_t *cursor)
|
|||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return sr.is_signal_frame;
|
||||
/* For now, we assume that any non-zero abi marker implies a signal frame.
|
||||
This should get us pretty far. */
|
||||
return (sr.abi_marker != 0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue