1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-09-27 17:09:29 +02:00

Add FreeBSD stub.

This commit is contained in:
Konstantin Belousov 2010-03-06 17:54:51 +02:00
parent 2646e0fde8
commit 1ba7599250

View file

@ -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