mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-23 07:57:38 +01:00
Add FreeBSD stub.
This commit is contained in:
parent
2646e0fde8
commit
1ba7599250
1 changed files with 9 additions and 0 deletions
|
@ -67,6 +67,15 @@ unw_is_signal_frame (unw_cursor_t *cursor)
|
|||
return (w0 == 0x0f0000000fc0c748 && w1 == 0x05);
|
||||
}
|
||||
|
||||
#elif defined(__FreeBSD__)
|
||||
PROTECTED int
|
||||
unw_is_signal_frame (unw_cursor_t *cursor)
|
||||
{
|
||||
/* XXXKIB */
|
||||
printf ("%s: implement me\n", __FUNCTION__);
|
||||
return -UNW_ENOINFO;
|
||||
}
|
||||
|
||||
#else /* __linux__ */
|
||||
|
||||
PROTECTED int
|
||||
|
|
Loading…
Reference in a new issue