1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-30 21:21:45 +02: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:
mostang.com!davidm 2003-04-23 05:56:59 +00:00
parent 5adda54e79
commit f24e3d70a0

View file

@ -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);
}