1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-18 07:41:44 +02:00

(unw_tdep_getcontext): Make it an expression returning zero (no error).

(Logical change 1.16)
This commit is contained in:
mostang.com!davidm 2002-04-12 05:02:40 +00:00
parent 58142c0a21
commit 74775e31d9

View file

@ -125,7 +125,7 @@ typedef ucontext_t unw_tdep_context_t;
using the "getcontext" name just because it's using libunwind. We
can't just use __getcontext() either, because that isn't exported
by glibc... */
#define unw_tdep_getcontext(uc) getcontext(uc)
#define unw_tdep_getcontext(uc) (getcontext (uc), 0)
#define unw_tdep_is_fpreg(r) ((unsigned) ((r) - UNW_IA64_FR) < 128)